mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
11 lines
255 B
C#
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; }
|
|
} |