namespace Azaion.Common.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; } }