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