Files
annotations/Azaion.CommonSecurity/DTO/User.cs
T
Alex Bezdieniezhnykh 277aaf09b0 throttle reimplemented
2025-04-17 09:16:34 +03:00

21 lines
540 B
C#

namespace Azaion.CommonSecurity.DTO;
public class User
{
public string Id { get; set; } = "";
public string Email { get; set; } = "";
public RoleEnum Role { get; set; }
public UserConfig? UserConfig { get; set; } = null!;
}
public class UserConfig
{
public UserQueueOffsets? QueueOffsets { get; set; } = new();
}
public class UserQueueOffsets
{
public ulong AnnotationsOffset { get; set; }
public ulong AnnotationsConfirmOffset { get; set; }
public ulong AnnotationsCommandsOffset { get; set; }
}