revanced-polling-api/app/models/BallotFields.py
2023-01-05 19:50:38 -03:00

12 lines
229 B
Python

from pydantic import BaseModel
class BallotFields(BaseModel):
"""Implements the fields for the ballots.
Args:
BaseModel (pydantic.BaseModel): BaseModel from pydantic
"""
cid: str
vote: bool