From a0937f76374f9dadbe1b031be719f7f7fa0a4afa Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Mon, 3 Oct 2022 10:53:12 +0200 Subject: [PATCH] actually add the stuff --- MareSynchronosAPI/ConnectionDto.cs | 5 +++++ 1 file changed, 5 insertions(+) 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; }