2024-10-04 15:58:12 +05:00

13 lines
261 B
Python

from pydantic import BaseModel
from typing import List, Optional
class StatusEntity(BaseModel):
id: Optional[int]
name: str
orders: Optional[List[int]] = None
steps: Optional[List[int]] = None
class Config:
from_attributes = True