using ExtraChat.Formatters; using MessagePack; namespace ExtraChat.Protocol; [Serializable] [MessagePackObject] public class SendSecretsRequest { [Key(0)] [MessagePackFormatter(typeof(BinaryUuidFormatter))] public Guid RequestId; [Key(1)] public byte[]? EncryptedSharedSecret; }