Response.cs 399 B

12345678910111213141516171819
  1. namespace Application.Features.Admin.Store.GameCatalog.GetByGame;
  2. public sealed record Response(
  3. int GameID,
  4. string GameName,
  5. string? GameCode,
  6. decimal ApiCommissionRate,
  7. List<Response.Row> List
  8. )
  9. {
  10. public sealed record Row(
  11. int ID,
  12. string ProductID,
  13. int Price,
  14. bool IsActive,
  15. DateTime CreatedAt,
  16. DateTime? UpdatedAt
  17. );
  18. }