app/@overflow/model/discovery/Zone.ts
2018-09-12 20:42:24 +09:00

16 lines
283 B
TypeScript

import { MetaIPType } from '../meta';
export interface Zone {
network?: string;
iface?: string;
metaIPType?: MetaIPType;
address?: string;
mac?: string;
meta?: Map<string, Map<string, string>>;
discoveredBy?: string[];
discoveredDate?: Date;
hostList?: any[];
}