mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 18:07:22 +01:00
9 lines
210 B
C#
9 lines
210 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record LoggedInUserDto
|
|
{
|
|
public bool IsAdmin { get; set; }
|
|
public bool IsModerator { get; set; }
|
|
public string UID { get; set; }
|
|
}
|
|
}
|