15 lines
293 B
TypeScript
15 lines
293 B
TypeScript
import { Host } from './Host';
|
|
import { MetaIPType } from '../meta';
|
|
|
|
export interface Zone {
|
|
network?: string;
|
|
iface?: string;
|
|
metaIPType?: MetaIPType;
|
|
address?: string;
|
|
mac?: string;
|
|
|
|
meta?: Map<string, Map<string, string>>;
|
|
discoveredBy?: string[];
|
|
discoveredDate?: Date;
|
|
}
|