13 lines
281 B
C#
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; }
|
|
}
|