From 6745203568301d6fd3ab7ca06fb51eb6649d58e0 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Mon, 3 Oct 2022 10:53:02 +0200 Subject: [PATCH] add groups info capabilities to connection dto --- MareSynchronosAPI/ConnectionDto.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MareSynchronosAPI/ConnectionDto.cs b/MareSynchronosAPI/ConnectionDto.cs index d4a3e40..3b5a1c1 100644 --- a/MareSynchronosAPI/ConnectionDto.cs +++ b/MareSynchronosAPI/ConnectionDto.cs @@ -7,5 +7,8 @@ public bool IsModerator { get; set; } public string UID { get; set; } public string ShardName { get; set; } + public int MaxGroupUserCount { get; set; } + public int MaxGroupsCreatedByUser { get; set; } + public int MaxGroupsJoinedByUser { get; set; } } }