cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 380 B
TypeScript
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>);
}