mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
ad23f95319
only basic messages, wip.
10 lines
268 B
C#
10 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);
|
|
}
|