mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
21 lines
289 B
Python
21 lines
289 B
Python
from typing import Literal
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from ...typing import Number
|
|
|
|
|
|
class Avatar(BaseModel):
|
|
type: Literal['identicon']
|
|
hash: str
|
|
|
|
|
|
class People(BaseModel):
|
|
avatar: str | Avatar
|
|
name: str
|
|
|
|
|
|
class Ranking(BaseModel):
|
|
rating: Number
|
|
rd: Number
|