add groups info capabilities to connection dto

This commit is contained in:
Stanley Dimant
2022-10-03 10:53:02 +02:00
parent 5869ccac09
commit 6745203568

View File

@@ -7,5 +7,8 @@
public bool IsModerator { get; set; } public bool IsModerator { get; set; }
public string UID { get; set; } public string UID { get; set; }
public string ShardName { get; set; } public string ShardName { get; set; }
public int MaxGroupUserCount { get; set; }
public int MaxGroupsCreatedByUser { get; set; }
public int MaxGroupsJoinedByUser { get; set; }
} }
} }