14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
import { Host } from './Host';
|
|
|
|
export interface Zone {
|
|
id?: number;
|
|
network?: string;
|
|
ipv4?: string;
|
|
ipv6?: string;
|
|
iface?: string;
|
|
mac?: string;
|
|
discoveredDate?: Date;
|
|
|
|
hosts: Map<string, Host> | null;
|
|
}
|