15 lines
278 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;
meta?: Map<string, string>;
2018-09-05 15:29:06 +09:00
discoveredBy?: string;
2018-09-04 01:12:10 +09:00
discoveredDate?: Date;
}