IW4M-Admin/SharedLibrary/Configuration/ServerConfiguration.cs

14 lines
363 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace SharedLibrary.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; }
}
}