Files
pyrofetes-frontend/src/app/services/api/model/get-quotation-dto.ts
2025-11-24 16:28:06 +01:00

20 lines
453 B
TypeScript

/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetQuotationProductDto } from './get-quotation-product-dto';
export interface GetQuotationDto {
id?: number;
message?: string | null;
conditionsSale?: string | null;
getQuotationProductDto?: Array<GetQuotationProductDto> | null;
}