Files
ClubPenguinApi/MareSynchronosAPI/ConnectionDto.cs
2022-10-03 10:53:12 +02:00

20 lines
562 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; }
public ServerInfoDto ServerInfo { get; set; }
}
public record ServerInfoDto
{
public string ShardName { get; set; }
public int MaxGroupUserCount { get; set; }
public int MaxGroupsCreatedByUser { get; set; }
public int MaxGroupsJoinedByUser { get; set; }
}
}