Files
PulsarK-main/Pulsar.Common/DNS/Host.cs
T
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

34 lines
783 B
C#

using System.Net;
namespace Pulsar.Common.DNS
{
public class Host
{
/// <summary>
/// Stores the hostname of the Host.
/// </summary>
/// <remarks>
/// Can be an IPv4, IPv6 address or hostname.
/// </remarks>
public string Hostname { get; set; }
/// <summary>
/// Stores the IP address of host.
/// </summary>
/// <remarks>
/// Can be an IPv4 or IPv6 address.
/// </remarks>
public IPAddress IpAddress { get; set; }
/// <summary>
/// Stores the port of the Host.
/// </summary>
public ushort Port { get; set; }
public override string ToString()
{
return Hostname + ":" + Port;
}
}
}