Query.cs 221 B

12345
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Channel.GetLiveLeaderboard;
  3. public sealed record Query(string Identifier, int? MaxRank = null, int? ViewerMemberID = null) : IQuery<Response>;