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:42:24 +00:00
|
|
|
hostList?: any[];
|
2018-09-03 16:12:10 +00:00
|
|
|
}
|