mirror of
https://github.com/revanced/revanced-polling-api.git
synced 2025-04-30 06:34:26 +02:00
13 lines
273 B
Python
13 lines
273 B
Python
from pydantic import BaseModel
|
|
from app.models.ItemFields import LogoRoot
|
|
|
|
class ItemModel(BaseModel):
|
|
"""Implements the model for the items.
|
|
|
|
Args:
|
|
BaseModel (pydantic.BaseModel): BaseModel from pydantic
|
|
"""
|
|
|
|
__root__: dict[str, LogoRoot]
|
|
|