mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
11 lines
268 B
C#
11 lines
268 B
C#
|
using System.Net;
|
|||
|
|
|||
|
namespace Supercell.GUT.Server.Network.Options;
|
|||
|
internal class GatewayOptions
|
|||
|
{
|
|||
|
public required string Host { get; set; }
|
|||
|
public required int Port { get; set; }
|
|||
|
|
|||
|
public IPEndPoint ListenEndPoint => new(IPAddress.Parse(Host), Port);
|
|||
|
}
|