ServerConfig.cs 148 B

1234567
  1. namespace NetServer.TomlData;
  2. public class ServerConfig
  3. {
  4. public int public_port { get; set; }
  5. public int internal_ports { get; set; }
  6. }