mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 11:06:42 +00:00
15 lines
246 B
C#
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; }
|
|||
|
}
|
|||
|
}
|