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

17 lines
300 B
TypeScript
Raw Normal View History

2018-09-03 16:12:10 +00:00
import { Zone } from './Zone';
import { Port } from './Port';
import { MetaIPType } from '../meta';
export interface Host {
metaIPType?: MetaIPType;
name?: string;
address?: string;
mac?: string;
meta?: Map<string, string>;
zone?: Zone;
portList?: Port[];
discoveredDate?: Date;
}