Query.cs 444 B

123456789
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.TrackRecord.GetLeaderboard;
  3. /// <summary>
  4. /// 예측 적중률 리더보드 (D2 M4) — 채점 표본(Hits+Misses) 10+ 회원, HitRate 내림차순.
  5. /// period 는 v1 에서 all-time 만 지원(주/월 구간은 SettledAt 윈도우 집계가 필요 — 후속). 익명 허용.
  6. /// </summary>
  7. public sealed record Query(string? Period, int Page) : IQuery<Response>;