12 lines
148 B
Python
12 lines
148 B
Python
from schemas.base import BaseSchema
|
|
|
|
|
|
# region Entities
|
|
|
|
class ModuleSchema(BaseSchema):
|
|
id: int
|
|
key: str
|
|
is_deleted: bool
|
|
|
|
# endregion
|