Command.cs 262 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Store.Coupon.Update;
  4. public sealed record Command(
  5. int ID,
  6. string Name,
  7. DateTime? ExpiresAt,
  8. int LowStockThreshold
  9. ) : ICommand<Result>;