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