mirror of
https://github.com/revanced/revanced-polling-api.git
synced 2025-04-30 22:54:27 +02:00
11 lines
272 B
Python
11 lines
272 B
Python
from pydantic import BaseModel
|
|
from app.models.ItemFields import LogoFields
|
|
|
|
class ItemModel(BaseModel):
|
|
"""Implements the model for the items.
|
|
|
|
Args:
|
|
BaseModel (pydantic.BaseModel): BaseModel from pydantic
|
|
"""
|
|
__root__: list[list[LogoFields]]
|