Query.cs 260 B

123456
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Channel.GetLiveList;
  4. public sealed record Query(int Limit = 24, int Offset = 0, string? Keyword = null, string? Sort = null) : IQuery<Result<Response>>;