Command.cs 366 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using Domain.Entities.Store.ValueObject;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Admin.Store.Coupon.Create;
  5. public sealed record Command(
  6. int ProductID,
  7. int GameID,
  8. string Name,
  9. CouponUsagePolicy UsagePolicy,
  10. DateTime? ExpiresAt,
  11. int LowStockThreshold
  12. ) : ICommand<Result<int>>;