using Application.Abstractions.Messaging; namespace Application.Features.Api.Ranking.GetHallOfFame; public sealed record Query(int Limit, string Period) : IQuery; 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 ValidPeriods = new() { Today, Week, Month, Quarter, Half, All }; }