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