servicepoint-tanks/TanksServer/Models/ServicePointDisplayConfiguration.cs
2024-04-07 20:16:22 +02:00

9 lines
226 B
C#

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