| 1234567891011121314151617 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.Ranking.GetHallOfFame;
- public sealed record Query(int Limit, string Period) : IQuery<Response>;
- public static class HallPeriod
- {
- public const string Today = "today";
- public const string Week = "week";
- public const string Month = "month";
- public const string Quarter = "quarter";
- public const string Half = "half";
- public const string All = "all";
- public static readonly HashSet<string> ValidPeriods = new() { Today, Week, Month, Quarter, Half, All };
- }
|