using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.Store.Coupon.DeleteCodes; public sealed record Command(int CouponID, int[] CodeIDs) : ICommand<Result<Response>>;