Files
PVabel2026/PVHelpers/INetEndPoint.cs
2026-02-05 15:34:59 +01:00

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; }
}
}