Files
SigHej/backend/app/models/stats.py

9 lines
192 B
Python
Raw Normal View History

2026-05-12 18:21:25 +02:00
from pydantic import BaseModel
class StatsResponse(BaseModel):
total_sessions_today: int
total_matches_today: int
active_sessions_now: int
top_interest_categories: list[str]