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