UNPKG

cecon-interfaces

Version:
11 lines (10 loc) 380 B
import { EPayioScheduleSkill } from '../enums'; import { IPayioScheduleProduct } from '../interfaces/i-schedule-product'; export declare class PayioScheduleProductEntity implements IPayioScheduleProduct { code: string; description: string; price: number; skill: EPayioScheduleSkill; unit: string; constructor(data?: Partial<PayioScheduleProductEntity>); }