This commit is contained in:
crusader 2018-06-21 19:26:22 +09:00
parent 84d7b11f49
commit 8cacd9aa20
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import { MetaCryptoType } from '../meta';
export interface Service {
metaCryptoType?: MetaCryptoType;
name?: string;
description?: string;
port?: Port;

View File

@ -1,6 +1,5 @@
import { Infra } from './Infra';
import { MetaTargetServiceType } from '../meta/MetaTargetServiceType';
import { InfraHostIP } from './InfraHostIP';
import { InfraHostPort } from './InfraHostPort';
import { MetaCryptoType } from '../meta/MetaCryptoType';
@ -8,4 +7,5 @@ export interface InfraService extends Infra {
metaTargetServiceType?: MetaTargetServiceType;
infraHostPort?: InfraHostPort;
metaCryptoType?: MetaCryptoType;
description?: string;
}