Files
Fulfillment-Backend/schemas/client.py
2024-03-04 04:15:01 +03:00

17 lines
254 B
Python

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