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