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

15 lines
275 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;
description?: string;
meta?: Map<string, string>;
port?: Port;
2018-09-05 06:29:06 +00:00
discoveredBy?: string;
2018-09-03 16:12:10 +00:00
discoveredDate?: Date;
}