Files
ClubPenguinApi/MareSynchronosAPI/ConnectionDto.cs
Stanley Dimant af8516d44a add API solution
2022-07-17 00:04:20 +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; }
}
}