mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 18:27:24 +01:00
10 lines
262 B
C#
10 lines
262 B
C#
namespace MareSynchronos.API
|
|
{
|
|
public record OnlineUserDto
|
|
{
|
|
public string UID { get; set; }
|
|
public string CharacterNameHash { get; set; }
|
|
public bool IsModerator { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
}
|
|
}
|