app/@overflow/model/net/nic.ts
2018-09-13 12:29:12 +09:00

17 lines
307 B
TypeScript

import { MetaIPType } from '../meta';
export interface Interface {
iface: string;
friendlyName: string;
mac: string;
addresses: InterfaceAddress[] | null;
}
export interface InterfaceAddress {
metaIPType: MetaIPType;
address: string;
netmask: string;
network: string;
gateway: string;
}