first
This commit is contained in:
9
TorchRemote.Models/Shared/ChatChannel.cs
Normal file
9
TorchRemote.Models/Shared/ChatChannel.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace TorchRemote.Models.Shared;
|
||||
|
||||
public enum ChatChannel
|
||||
{
|
||||
Global,
|
||||
GlobalScripted,
|
||||
Faction,
|
||||
Private
|
||||
}
|
3
TorchRemote.Models/Shared/IpAddress.cs
Normal file
3
TorchRemote.Models/Shared/IpAddress.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace TorchRemote.Models.Shared;
|
||||
|
||||
public record IpAddress(string Ip, int Port);
|
9
TorchRemote.Models/Shared/ServerSettings.cs
Normal file
9
TorchRemote.Models/Shared/ServerSettings.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace TorchRemote.Models.Shared;
|
||||
|
||||
public record ServerSettings(
|
||||
string ServerName,
|
||||
string MapName,
|
||||
string ServerDescription,
|
||||
short MemberLimit,
|
||||
IpAddress ListenEndPoint
|
||||
);
|
Reference in New Issue
Block a user