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

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;
}