servicepoint-tanks/TanksServer/Models/ServicePointDisplayConfiguration.cs

9 lines
226 B
C#
Raw Normal View History

2024-04-07 20:16:22 +02:00
namespace TanksServer.Models;
2024-04-07 19:52:16 +02:00
internal sealed class ServicePointDisplayConfiguration
{
2024-04-07 20:16:22 +02:00
public bool Enable { get; set; } = true;
2024-04-07 19:52:16 +02:00
public string Hostname { get; set; } = string.Empty;
public int Port { get; set; }
}