9 lines
226 B
C#
9 lines
226 B
C#
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; }
|
|
}
|