app/@overflow/model/discovery/Zone.ts

16 lines
287 B
TypeScript
Raw Normal View History

2018-09-03 16:12:10 +00:00
import { MetaIPType } from '../meta';
export interface Zone {
network?: string;
iface?: string;
metaIPType?: MetaIPType;
address?: string;
mac?: string;
2018-09-11 08:04:22 +00:00
meta?: Map<string, Map<string, string>>;
discoveredBy?: string[];
2018-09-03 16:12:10 +00:00
discoveredDate?: Date;
2018-09-12 11:18:38 +00:00
2018-09-12 11:29:24 +00:00
// hostList?: Host[];
2018-09-03 16:12:10 +00:00
}