Query.cs 248 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.GetExpLogs;
  4. public sealed record Query(
  5. int MemberID,
  6. string Type,
  7. int Page,
  8. int PerPage
  9. ) : IQuery<Result<Response>>;