/** Description of a service */
export interface Service {
    /** ID of the service */
    serviceId: number;
    /** Name of the service */
    serviceName: string;
    /** Type of the service */
    serviceType: string;
}
//# sourceMappingURL=Service.d.ts.map