revanced-polling-api/app/models/BallotFields.py
2022-11-16 20:59:28 -03:00

13 lines
260 B
Python

from collections import deque
from pydantic import BaseModel
class BallotFields(BaseModel):
"""Implements the fields for the ballots.
Args:
BaseModel (pydantic.BaseModel): BaseModel from pydantic
"""
cid: str
weight: int