using System.Net; namespace PVHelpers { public interface INetEndPoint { public IPEndPoint EndPoint { get; } public IPAddress Address { get; } public Int32 Port { get; } } }