ExtraChat/client/ExtraChat/Protocol/InviteResponse.cs

19 lines
317 B
C#

using ExtraChat.Formatters;
using MessagePack;
namespace ExtraChat.Protocol;
[Serializable]
[MessagePackObject]
public class InviteResponse {
[Key(0)]
[MessagePackFormatter(typeof(BinaryUuidFormatter))]
public Guid Channel;
[Key(1)]
public string Name;
[Key(2)]
public ushort World;
}