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