| 12345678910111213141516171819202122232425 |
- using Domain.Entities.Store.ValueObject;
- namespace Application.Features.Admin.Store.Coupon.Search;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int ProductID,
- string ProductName,
- int GameID,
- string GameName,
- string Name,
- CouponUsagePolicy UsagePolicy,
- DateTime? ExpiresAt,
- int GeneratedCount,
- int UsedCount,
- int AvailableCount,
- int LowStockThreshold,
- bool IsLowStock,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|