11 lines
158 B
Python
11 lines
158 B
Python
from schemas.base import BaseSchema
|
|
|
|
|
|
class BaseStatusSchema(BaseSchema):
|
|
name: str
|
|
|
|
|
|
class StatusSchema(BaseStatusSchema):
|
|
id: int
|
|
lexorank: str
|