app/@overflow/model/net/nic.ts
crusader 20aeeb1a9b ing
2018-08-27 10:41:27 +09:00

16 lines
283 B
TypeScript

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