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