diff --git a/Wino.Core.Domain/Entities/CustomServerInformation.cs b/Wino.Core.Domain/Entities/CustomServerInformation.cs index c1566399..b730ee5f 100644 --- a/Wino.Core.Domain/Entities/CustomServerInformation.cs +++ b/Wino.Core.Domain/Entities/CustomServerInformation.cs @@ -43,5 +43,11 @@ namespace Wino.Core.Domain.Entities public string ProxyServer { get; set; } public string ProxyServerPort { get; set; } + + /// + /// Number of concurrent clients that can connect to the server. + /// Default is 5. + /// + public int MaxConcurrentClients { get; set; } } }