ServerInfoConfig.cs 260 B

1234567891011
  1. namespace Model
  2. {
  3. public class ServerInfoConfig: AConfig
  4. {
  5. public string Zone { get; set; }
  6. public string Name { get; set; }
  7. public string Host { get; set; }
  8. public int Port { get; set; }
  9. public ServerType ServerType { get; set; }
  10. }
  11. }