10 lines
174 B
Python
10 lines
174 B
Python
from pydantic import BaseModel
|
|
from typing import List
|
|
|
|
from models.attribute import Attribute
|
|
|
|
class Item(BaseModel):
|
|
id: int
|
|
attributes: List[Attribute]
|
|
b_param: int
|