Response.cs 443 B

1234567891011121314151617181920
  1. using Domain.Entities.Store.ValueObject;
  2. namespace Application.Features.Admin.Store.Coupon.Get;
  3. public sealed record Response(
  4. int ID,
  5. int ProductID,
  6. string ProductName,
  7. int GameID,
  8. string GameName,
  9. string Name,
  10. CouponUsagePolicy UsagePolicy,
  11. DateTime? ExpiresAt,
  12. int GeneratedCount,
  13. int UsedCount,
  14. int AvailableCount,
  15. int LowStockThreshold,
  16. DateTime CreatedAt,
  17. DateTime? UpdatedAt
  18. );