10 lines
199 B
C#
10 lines
199 B
C#
namespace TorchRemote.Models.Shared;
|
|
|
|
public record ServerSettings(
|
|
string ServerName,
|
|
string MapName,
|
|
string ServerDescription,
|
|
short MemberLimit,
|
|
IpAddress ListenEndPoint
|
|
);
|