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