MaxConcurrentClients for IMAP model.

This commit is contained in:
Burak Kaan Köse
2024-06-21 04:25:07 +02:00
parent 633c708c33
commit 5b723ec954

View File

@@ -43,5 +43,11 @@ namespace Wino.Core.Domain.Entities
public string ProxyServer { get; set; }
public string ProxyServerPort { get; set; }
/// <summary>
/// Number of concurrent clients that can connect to the server.
/// Default is 5.
/// </summary>
public int MaxConcurrentClients { get; set; }
}
}