7 lines
102 B
Python
7 lines
102 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class InfoItem(BaseModel):
|
||
|
key: str
|
||
|
value: str | float | int
|