servicepoint-tanks/tanks-backend/TanksServer/Models/DisplayConfiguration.cs
2024-05-13 01:23:34 +02:00

9 lines
171 B
C#

namespace TanksServer.Models;
public class DisplayConfiguration
{
public string Hostname { get; set; } = "172.23.42.29";
public int Port { get; set; } = 2342;
}