Files
Ragon/Ragon.Server/NetworkConfiguration.cs
T

9 lines
215 B
C#
Raw Normal View History

2022-12-16 00:05:46 +04:00
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; }
}