DocSpace-buildtools/common/services/ASC.Socket.IO.Svc/SocketSettings.cs

14 lines
353 B
C#
Raw Normal View History

2020-08-02 20:12:45 +00:00
namespace ASC.Socket.IO.Svc
{
public class SocketSettings
{
public string Path { get; set; }
public string Port { get; set; }
public string RedisHost { get; set; }
public string RedisPort { get; set; }
public int? PingInterval { get; set; }
public int? ReconnectAttempts { get; set; }
2020-08-02 20:12:45 +00:00
}
}