19 lines
434 B
TypeScript
19 lines
434 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 { CreateProductQuotationDto } from './create-product-quotation-dto';
|
|
|
|
|
|
export interface CreateQuotationDto {
|
|
message?: string | null;
|
|
conditionsSale?: string | null;
|
|
products?: Array<CreateProductQuotationDto> | null;
|
|
}
|
|
|