Files
portalweb-api/src/orders/dto/CutItemDto.ts

10 lines
182 B
TypeScript

export class CutItemDto {
productId: number;
description: string;
pacth: string;
stockId: number;
saleQuantity: number;
cutQuantity: number;
separedQuantity: number;
}