Query.cs 275 B

12345
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Member.Items.List;
  3. public sealed record Query(int MemberID, bool IncludeUsed = false, bool IncludeExpired = false, int Page = 1, int PerPage = 20, bool ConsumableOnly = false) : IQuery<Response>;