mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 16:03:07 +00:00
20 lines
346 B
C#
20 lines
346 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; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Host}:{Port}";
|
|
}
|
|
}
|
|
}
|