| 12345678910111213141516171819202122232425262728293031 |
- using Domain.Entities.Store.ValueObject;
- namespace Application.Features.Admin.Store.Product.Get;
- public sealed record Response(
- int ID,
- int GameID,
- string GameName,
- string Name,
- string? Description,
- string? Thumbnail,
- ProductType Type,
- int Price,
- DiscountType DiscountType,
- int DiscountValue,
- int SalePrice,
- int Stock,
- int MinPurchase,
- int MaxPurchase,
- bool IsActive,
- int Order,
- DateTime? SaleStartAt,
- DateTime? SaleEndAt,
- DateTime CreatedAt,
- DateTime? UpdatedAt,
- bool RequireDonationChannel,
- ItemKind? ItemKind,
- int DurationDays,
- string? EffectPayload,
- bool IsGiftable
- );
|