Files
Ragon/Ragon.Server/NetworkConfiguration.cs
T
2022-12-16 00:05:46 +04:00

9 lines
215 B
C#

namespace Ragon.Server;
public struct NetworkConfiguration
{
public int LimitConnections { get; set; }
public int Port { get; set; }
public uint Protocol { get; set; }
public string Address { get; set; }
}