Improve instances manegement

Resolve #4187
This commit is contained in:
syuilo 2019-02-08 20:56:16 +09:00
parent 72b85fc09f
commit 5e0eda9526
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
7 changed files with 65 additions and 11 deletions

View file

@ -68,8 +68,23 @@ export interface IInstance {
*/
latestRequestReceivedAt?: Date;
/**
*
*/
isNotResponding: boolean;
/**
*
*/
lastCommunicatedAt: Date;
/**
*
*/
isBlocked: boolean;
/**
*
*/
isMarkedAsClosed: boolean;
}