naps2/NAPS2.Sdk.Network/DiscoveredServer.cs
2021-12-17 11:59:54 -08:00

16 lines
303 B
C#

using System.Net;
namespace NAPS2.Remoting.Network;
public class DiscoveredServer
{
internal DiscoveredServer(string name, IPEndPoint ipEndPoint)
{
Name = name;
IPEndPoint = ipEndPoint;
}
public string Name { get; }
public IPEndPoint IPEndPoint { get; }
}