feat: shipping warehouse and cost

This commit is contained in:
2024-07-18 04:57:05 +03:00
parent ba73d5cb09
commit e7235021f9
18 changed files with 148 additions and 1298 deletions

View File

@@ -0,0 +1,12 @@
from typing import List
from schemas.base import CustomModelCamel
class ShippingWarehouseSchema(CustomModelCamel):
id: int
name: str
class GetAllShippingWarehousesResponse(CustomModelCamel):
shipping_warehouses: List[ShippingWarehouseSchema]