Query.cs 562 B

1234567891011121314151617
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Ranking.GetHallOfFame;
  3. public sealed record Query(int Limit, string Period) : IQuery<Response>;
  4. public static class HallPeriod
  5. {
  6. public const string Today = "today";
  7. public const string Week = "week";
  8. public const string Month = "month";
  9. public const string Quarter = "quarter";
  10. public const string Half = "half";
  11. public const string All = "all";
  12. public static readonly HashSet<string> ValidPeriods = new() { Today, Week, Month, Quarter, Half, All };
  13. }