14 lines
253 B
TypeScript
14 lines
253 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, string>;
|
||
|
|
||
|
discoveredDate?: Date;
|
||
|
}
|