Enka_Panel_Bot/defs/models.py
2023-01-14 21:59:43 +08:00

16 lines
220 B
Python

from typing import List
from pydantic import BaseModel
class Char(BaseModel):
name: str
file_id: str
time: int
class Player(BaseModel):
name: str = ""
time: int = 0
all_char: List[Char] = []