summaryrefslogtreecommitdiff
path: root/ATRI/plugins/console/models.py
blob: f7ddf8d72fe20751c648dc611f60f576a90bddc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from pydantic import BaseModel


class AuthData(BaseModel):
    token: str
    md5: str
    dead_time: int


class MessageDealerInfo(BaseModel):
    recv_msg: str
    deal_msg: str
    failed_deal_msg: str
    total_r_m: str
    total_d_m: str
    total_f_m: str