servicepoint-tanks/TanksServer/ServicePointDisplayConfiguration.cs

8 lines
165 B
C#
Raw Normal View History

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