9 lines
192 B
Python
9 lines
192 B
Python
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
|
||
|
|
class StatsResponse(BaseModel):
|
||
|
|
total_sessions_today: int
|
||
|
|
total_matches_today: int
|
||
|
|
active_sessions_now: int
|
||
|
|
top_interest_categories: list[str]
|