noauth/probe connectAddress,date

This commit is contained in:
insanity 2018-05-14 16:25:39 +09:00
parent d39f87b9bc
commit 99d6ec7351
2 changed files with 5 additions and 0 deletions

View File

@ -11,4 +11,6 @@ export interface NoAuthProbe {
apiKey?: string;
domain?: Domain;
probe?: Probe;
connectAddress?: string;
connectDate: Date;
}

View File

@ -14,4 +14,7 @@ export interface Probe {
cidr?: string;
authorizeDate?: Date;
authorizeMember?: Member;
targetCount: number;
connectDate: Date;
connectAddress: string;
}