11 lines
194 B
Python
11 lines
194 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
|
|
irf: float = 0.00
|