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

14 lines
253 B
TypeScript
Raw Normal View History

2018-09-03 16:12:10 +00: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>;
discoveredDate?: Date;
}