ExtraChat/client/ExtraChat/Protocol/CreateRequest.cs

11 lines
154 B
C#
Raw Normal View History

2022-07-08 02:58:32 +00:00
using MessagePack;
namespace ExtraChat.Protocol;
[Serializable]
[MessagePackObject]
public class CreateRequest {
[Key(0)]
public byte[] Name;
}