Query.cs 234 B

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