diff --git a/MareSynchronosAPI/ConnectionDto.cs b/MareSynchronosAPI/ConnectionDto.cs index 3b5a1c1..bb5459e 100644 --- a/MareSynchronosAPI/ConnectionDto.cs +++ b/MareSynchronosAPI/ConnectionDto.cs @@ -6,6 +6,11 @@ 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; }