Query.cs 207 B

123456
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Store.Orders.Get;
  4. public sealed record Query(int OrderID, int MemberID) : IQuery<Result<Response>>;