Files
Fulfillment-Backend/schemas/client.py
2024-03-05 04:58:26 +03:00

22 lines
327 B
Python

from typing import List
from schemas.base import CustomModel
class ClientSchema(CustomModel):
id: int
name: str
class ClientSearchRequest(CustomModel):
name: str
class ClientCreateRequest(CustomModel):
name: str
address: str
class ClientSearchResponse(CustomModel):
clients: List[ClientSchema]