2022-11-16 20:59:28 -03:00

13 lines
305 B
Python

from pydantic import BaseModel
from app.models.BallotFields import BallotFields
class BallotModel(BaseModel):
"""Implements the fields for the ballots.
Args:
BaseModel (pydantic.BaseModel): BaseModel from pydantic
"""
discord_id_hash: str
ballot: list[BallotFields]