mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 12:36:31 +00:00
consolidate CommonSecurity to Common.dll
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user