From 8cacd9aa2028a1aec830a15bc1de4364f29e3a01 Mon Sep 17 00:00:00 2001 From: crusader Date: Thu, 21 Jun 2018 19:26:22 +0900 Subject: [PATCH] ing --- src/model/discovery/Service.ts | 1 + src/model/infra/InfraService.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/model/discovery/Service.ts b/src/model/discovery/Service.ts index 939e3a0..e12d6e0 100644 --- a/src/model/discovery/Service.ts +++ b/src/model/discovery/Service.ts @@ -4,6 +4,7 @@ import { MetaCryptoType } from '../meta'; export interface Service { metaCryptoType?: MetaCryptoType; name?: string; + description?: string; port?: Port; diff --git a/src/model/infra/InfraService.ts b/src/model/infra/InfraService.ts index ae9669a..28e29e5 100644 --- a/src/model/infra/InfraService.ts +++ b/src/model/infra/InfraService.ts @@ -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; } \ No newline at end of file