ExtraChat/client/ExtraChat/Protocol/UpdateResponse.cs
2022-07-07 22:59:33 -04:00

13 lines
240 B
C#

using ExtraChat.Formatters;
using MessagePack;
namespace ExtraChat.Protocol;
[Serializable]
[MessagePackObject]
public class UpdateResponse {
[Key(0)]
[MessagePackFormatter(typeof(BinaryUuidFormatter))]
public Guid Channel;
}