servicepoint-tanks/TanksServer/ServicePointDisplayConfiguration.cs
2024-04-06 13:46:34 +02:00

8 lines
165 B
C#

namespace TanksServer;
public class ServicePointDisplayConfiguration
{
public string Hostname { get; set; } = string.Empty;
public int Port { get; set; }
}