app/@overflow/model/discovery/Service.ts

16 lines
307 B
TypeScript
Raw Normal View History

2018-09-03 16:12:10 +00:00
import { Port } from './Port';
import { MetaCryptoType } from '../meta';
export interface Service {
metaCryptoType?: MetaCryptoType;
key?: string;
2018-09-11 08:04:22 +00:00
name?: string;
2018-09-03 16:12:10 +00:00
description?: string;
2018-09-11 08:04:22 +00:00
meta?: Map<string, Map<string, string>>;
discoveredBy?: string[];
2018-09-03 16:12:10 +00:00
discoveredDate?: Date;
2018-09-11 08:04:22 +00:00
port?: Port;
2018-09-03 16:12:10 +00:00
}