Files
TorchRemote/TorchRemote.Models/Shared/ServerSettings.cs
2022-07-21 21:57:27 +07:00

10 lines
199 B
C#

namespace TorchRemote.Models.Shared;
public record ServerSettings(
string ServerName,
string MapName,
string ServerDescription,
short MemberLimit,
IpAddress ListenEndPoint
);