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

8 lines
183 B
C#

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