using MessagePack; namespace Azaion.CommonSecurity.DTO; [MessagePackObject] public class User { [Key("i")]public string Id { get; set; } [Key("e")]public string Email { get; set; } [Key("r")]public RoleEnum Role { get; set; } }