servicepoint-tanks/TanksServer/ServicePointDisplay/ServicePointDisplayConfiguration.cs
2024-04-09 22:38:56 +02:00

9 lines
239 B
C#

namespace TanksServer.ServicePointDisplay;
internal sealed class ServicePointDisplayConfiguration
{
public bool Enable { get; set; } = true;
public string Hostname { get; set; } = string.Empty;
public int Port { get; set; }
}