mirror of
https://github.com/revanced/revanced-polling-api.git
synced 2025-04-30 22:54:27 +02:00
11 lines
214 B
Python
11 lines
214 B
Python
from pydantic import BaseModel
|
|
|
|
class BallotModel(BaseModel):
|
|
"""Implements the fields for the ballots.
|
|
|
|
Args:
|
|
BaseModel (pydantic.BaseModel): BaseModel from pydantic
|
|
"""
|
|
|
|
vote: str
|