IW4M-Admin/SharedLibrary/Configuration/ServerConfiguration.cs

10 lines
225 B
C#

namespace SharedLibrary.Configuration
{
public class ServerConfiguration
{
public string IPAddress { get; set; }
public short Port { get; set; }
public string Password { get; set; }
}
}