app/@overflow/model/discovery/Zone.ts
insanity 31d0245490 UU
2018-09-12 20:29:24 +09:00

16 lines
287 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?: Host[];
}