12 lines
304 B
C#
12 lines
304 B
C#
using System.Net;
|
|
|
|
namespace NahidaImpact.Gameserver.Options;
|
|
internal record GatewayOptions
|
|
{
|
|
public const string Section = "Gateway";
|
|
|
|
public required string Host { get; set; }
|
|
public required int Port { get; set; }
|
|
|
|
public IPEndPoint EndPoint => new(IPAddress.Parse(Host), Port);
|
|
}
|