| 12345678910111213141516171819 |
- namespace Application.Features.Admin.Store.GameCatalog.GetByGame;
- public sealed record Response(
- int GameID,
- string GameName,
- string? GameCode,
- decimal ApiCommissionRate,
- List<Response.Row> List
- )
- {
- public sealed record Row(
- int ID,
- string ProductID,
- int Price,
- bool IsActive,
- DateTime CreatedAt,
- DateTime? UpdatedAt
- );
- }
|