Files
Fulfillment-Backend/schemas/module.py

12 lines
148 B
Python

from schemas.base import BaseSchema
# region Entities
class ModuleSchema(BaseSchema):
id: int
key: str
is_deleted: bool
# endregion