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/constructeur.dto.d.ts
2025-09-17 23:11:25 +02:00

11 lines
211 B
TypeScript

export declare class CreateConstructeurDto {
name: string;
email?: string;
phone?: string;
}
export declare class UpdateConstructeurDto {
name?: string;
email?: string;
phone?: string;
}