make big display toggleable

This commit is contained in:
Vinzenz Schroeter 2024-04-07 20:16:22 +02:00
parent a9aaf899a2
commit dc9ad21a3d
29 changed files with 119 additions and 46 deletions

View file

@ -1,7 +1,8 @@
namespace TanksServer.Services;
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; }
}