15 lines
275 B
TypeScript
Raw Normal View History

2018-09-04 01:12:10 +09: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 15:29:06 +09:00
discoveredBy?: string;
2018-09-04 01:12:10 +09:00
discoveredDate?: Date;
}