Response.cs 581 B

123456789101112131415161718192021222324252627
  1. using Domain.Entities.Store.ValueObject;
  2. namespace Application.Features.Admin.Store.Product.Get;
  3. public sealed record Response(
  4. int ID,
  5. int GameID,
  6. string GameName,
  7. string Name,
  8. string? Description,
  9. string? Thumbnail,
  10. ProductType Type,
  11. int Price,
  12. DiscountType DiscountType,
  13. int DiscountValue,
  14. int SalePrice,
  15. int Stock,
  16. int MinPurchase,
  17. int MaxPurchase,
  18. bool IsActive,
  19. int Order,
  20. DateTime? SaleStartAt,
  21. DateTime? SaleEndAt,
  22. DateTime CreatedAt,
  23. DateTime? UpdatedAt,
  24. bool RequireDonationChannel
  25. );