mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
0c66607ed7
add user config queue offsets throttle improvements
21 lines
533 B
C#
21 lines
533 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? QueueConfig { get; set; } = new();
|
|
}
|
|
|
|
public class UserQueueOffsets
|
|
{
|
|
public int AnnotationsOffset { get; set; }
|
|
public int AnnotationsConfirmOffset { get; set; }
|
|
public int AnnotationsCommandsOffset { get; set; }
|
|
} |