feat: shipping warehouse and cost
This commit is contained in:
12
schemas/shipping_warehouse.py
Normal file
12
schemas/shipping_warehouse.py
Normal 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]
|
||||
Reference in New Issue
Block a user