15 lines
293 B
TypeScript
Raw Normal View History

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