crusader ba355a5665 ing
2018-04-28 01:46:07 +09:00

17 lines
310 B
TypeScript

import { Zone } from './Zone';
import { Port } from './Port';
export interface Host {
id?: number;
ipv4?: string;
ipv6?: string;
mac: number;
os: string;
discoveredDate?: Date;
zone?: Zone;
target?: boolean;
ports: Map<number, Port> | null;
portList: Port[] | null;
}