mirror of
https://github.com/snltty/linker.git
synced 2025-12-19 01:46:46 +08:00
14 lines
252 B
C#
14 lines
252 B
C#
using System.Net;
|
|
|
|
namespace linker.messenger.exroute
|
|
{
|
|
public interface IExRoute
|
|
{
|
|
/// <summary>
|
|
/// 获取排除的路由
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<IPAddress> Get();
|
|
}
|
|
}
|