This commit is contained in:
crusader
2018-06-14 12:24:09 +09:00
parent fe40e8bbef
commit 823b754a24
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import { MetaNoAuthProbeStatus } from '../meta';
import { Domain } from '../domain';
import { Probe } from '../probe';
import { InfraHost } from '../infra';
export interface NoAuthProbe {
id?: number;
@@ -13,4 +14,6 @@ export interface NoAuthProbe {
connectDate?: Date;
connectAddress?: string;
createDate?: Date;
infraHost?: InfraHost;
}