From 5b723ec954244f9785a4dfddea946afe48b2c691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Fri, 21 Jun 2024 04:25:07 +0200 Subject: [PATCH] MaxConcurrentClients for IMAP model. --- Wino.Core.Domain/Entities/CustomServerInformation.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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; } } }