2018-04-09 21:42:04 +09:00

11 lines
191 B
TypeScript

import { Port } from './Port';
export interface Service {
id: number;
cryptoType: string;
serviceName: string;
discoveredDate?: Date;
port: Port;
target?: boolean;
}