IW4M-Admin/SharedLibraryCore/Configuration/ServerConfiguration.cs
2018-04-08 01:44:42 -05:00

14 lines
367 B
C#

using System.Collections.Generic;
namespace SharedLibraryCore.Configuration
{
public class ServerConfiguration
{
public string IPAddress { get; set; }
public short Port { get; set; }
public string Password { get; set; }
public List<string> Rules { get; set; }
public List<string> AutoMessages { get; set; }
}
}