Response.cs 376 B

1234567891011121314
  1. namespace Application.Features.Api.V1.Coupons.ListByGame;
  2. public sealed record Response(int GameID, string GameName, int Total, int Page, int Limit, List<Response.Row> Items)
  3. {
  4. public sealed record Row(
  5. long ID,
  6. int CouponID,
  7. string CouponName,
  8. string Code,
  9. int Status,
  10. DateTime? IssuedAt,
  11. DateTime? UsedAt
  12. );
  13. }