mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
16 lines
286 B
C#
16 lines
286 B
C#
using System.Net;
|
|
using System.Net.NetworkInformation;
|
|
|
|
namespace Netch.Models
|
|
{
|
|
public interface IAdapter
|
|
{
|
|
string AdapterId { get; }
|
|
|
|
int InterfaceIndex { get; }
|
|
|
|
IPAddress Gateway { get; }
|
|
|
|
NetworkInterface NetworkInterface { get; }
|
|
}
|
|
} |