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