IPMeow/src/IPMeow.Lib/Server/IRoutedServer.cs
2023-12-11 19:33:47 +01:00

13 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace IPMeow.Lib.Server;
public interface IRoutedServer
{
public IPAddress Address { get; set; }
public ICollection<Endpoint> Protocols { get; set; }
}