Files
annotations/Azaion.CommonSecurity/DTO/User.cs
T
2025-02-16 16:35:52 +02:00

11 lines
255 B
C#

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; }
}