fixed discovery model

This commit is contained in:
snoop 2018-04-09 21:42:04 +09:00
parent 5aed772c54
commit 23205df2b1
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export interface Port {
portNumber: number;
discoveredDate?: Date;
host: Host;
isTarget?: boolean;
target?: boolean;
services: Map<string, Service> | null;
serviceList: Service[] | null;

View File

@ -6,5 +6,5 @@ export interface Service {
serviceName: string;
discoveredDate?: Date;
port: Port;
isTarget?: boolean;
target?: boolean;
}