app/@overflow/model/discovery/Host.ts
crusader 19dda63c8a ing
2018-09-05 15:29:06 +09:00

18 lines
325 B
TypeScript

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[];
discoveredBy?: string;
discoveredDate?: Date;
}