Command.cs 260 B

1234567
  1. using Application.Abstractions.Messaging;
  2. using Microsoft.AspNetCore.Http;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Admin.Store.Coupon.ImportCodes;
  5. public sealed record Command(int CouponID, IFormFile CsvFile) : ICommand<Result<Response>>;