12 lines
213 B
C#
12 lines
213 B
C#
|
|
using System.Net;
|
|||
|
|
|
|||
|
|
namespace PVHelpers
|
|||
|
|
{
|
|||
|
|
public interface INetEndPoint
|
|||
|
|
{
|
|||
|
|
public IPEndPoint EndPoint { get; }
|
|||
|
|
public IPAddress Address { get; }
|
|||
|
|
public Int32 Port { get; }
|
|||
|
|
}
|
|||
|
|
}
|