Files
ClubPenguinApi/MareSynchronosAPI/ConnectionDto.cs
2022-10-02 23:30:51 +02:00

11 lines
255 B
C#

namespace MareSynchronos.API
{
public record ConnectionDto
{
public int ServerVersion { get; set; }
public bool IsAdmin { get; set; }
public bool IsModerator { get; set; }
public string UID { get; set; }
}
}