using Domain.Entities.Store.ValueObject; namespace Application.Features.Admin.Store.Coupon.Search; public sealed record Response(int Total, List 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 ); }