2018-09-03 16:12:10 +00:00
|
|
|
import { Host } from './Host';
|
|
|
|
import { Service } from './Service';
|
|
|
|
import { MetaPortType } from '../meta';
|
|
|
|
|
|
|
|
export interface Port {
|
|
|
|
metaPortType?: MetaPortType;
|
|
|
|
portNumber?: number;
|
|
|
|
meta?: Map<string, string>;
|
|
|
|
|
|
|
|
host?: Host;
|
|
|
|
serviceList?: Service[];
|
2018-09-05 06:29:06 +00:00
|
|
|
|
|
|
|
discoveredBy?: string;
|
|
|
|
discoveredDate?: Date;
|
2018-09-03 16:12:10 +00:00
|
|
|
}
|