2
0
mirror of synced 2025-01-11 00:56:05 +00:00
2023-06-21 08:28:40 +02:00

15 lines
246 B
C#

namespace Utils
{
public class Address
{
public Address(string host, int port)
{
Host = host;
Port = port;
}
public string Host { get; }
public int Port { get; }
}
}