| 1234567891011121314 |
- namespace Application.Features.Api.V1.Coupons.ListByGame;
- public sealed record Response(int GameID, string GameName, int Total, int Page, int Limit, List<Response.Row> Items)
- {
- public sealed record Row(
- long ID,
- int CouponID,
- string CouponName,
- string Code,
- int Status,
- DateTime? IssuedAt,
- DateTime? UsedAt
- );
- }
|