Skip to content

Commit 0b33d93

Browse files
LinwenxuanLinwenxuan
authored andcommitted
[Core] Adding dummy RecordEntity.cs
1 parent 92ab9fe commit 0b33d93

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using Lagrange.Core.Internal.Packets.Message.Element;
2+
3+
namespace Lagrange.Core.Message.Entity;
4+
5+
public class RecordEntity : IMessageEntity
6+
{
7+
IEnumerable<Elem> IMessageEntity.PackElement()
8+
{
9+
throw new NotImplementedException();
10+
}
11+
12+
IMessageEntity? IMessageEntity.UnpackElement(Elem elem)
13+
{
14+
throw new NotImplementedException();
15+
}
16+
17+
public string ToPreviewString()
18+
{
19+
throw new NotImplementedException();
20+
}
21+
}

0 commit comments

Comments
 (0)