Skip to content

Commit

Permalink
[Core] Adding dummy RecordEntity.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Linwenxuan authored and Linwenxuan committed Jan 26, 2024
1 parent 92ab9fe commit 0b33d93
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Lagrange.Core/Message/Entity/RecordEntity.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using Lagrange.Core.Internal.Packets.Message.Element;

namespace Lagrange.Core.Message.Entity;

public class RecordEntity : IMessageEntity
{
IEnumerable<Elem> IMessageEntity.PackElement()
{
throw new NotImplementedException();
}

IMessageEntity? IMessageEntity.UnpackElement(Elem elem)
{
throw new NotImplementedException();
}

public string ToPreviewString()
{
throw new NotImplementedException();
}
}

0 comments on commit 0b33d93

Please sign in to comment.