uptading Supplier Page

This commit is contained in:
Enzo
2025-11-27 18:52:30 +01:00
parent 8aef9f628b
commit b55bdedc20
8 changed files with 148 additions and 203 deletions

View File

@@ -7,6 +7,7 @@
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetProductDto } from './get-product-dto';
export interface GetSupplierDto {
@@ -18,5 +19,6 @@ export interface GetSupplierDto {
zipCode?: string | null;
city?: string | null;
deliveryDelay?: number;
products?: Array<GetProductDto> | null;
}