2018-04-06 20:02:18 +09:00
|
|
|
import { Zone } from './Zone';
|
|
|
|
import { Port } from './Port';
|
|
|
|
|
|
|
|
export interface Host {
|
|
|
|
id?: number;
|
2018-04-28 01:46:07 +09:00
|
|
|
ipv4?: string;
|
|
|
|
ipv6?: string;
|
2018-04-06 20:02:18 +09:00
|
|
|
mac: number;
|
|
|
|
os: string;
|
|
|
|
discoveredDate?: Date;
|
|
|
|
zone?: Zone;
|
|
|
|
target?: boolean;
|
|
|
|
|
|
|
|
ports: Map<number, Port> | null;
|
|
|
|
portList: Port[] | null;
|
|
|
|
}
|