This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Inventory_backend/dist/shared/dto/machine.dto.d.ts
2025-09-17 08:50:07 +02:00

18 lines
389 B
TypeScript

export declare class CreateMachineDto {
name: string;
siteId: string;
reference?: string;
constructeur?: string;
prix?: string;
emplacement?: string;
typeMachineId?: string;
}
export declare class UpdateMachineDto {
name?: string;
reference?: string;
constructeur?: string;
prix?: string;
emplacement?: string;
typeMachineId?: string;
}