| 123456789101112131415161718192021 |
- namespace Application.Features.Admin.Store.Game.Search;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- string? Code,
- string KorName,
- string? EngName,
- string Publisher,
- string? Thumbnail,
- decimal CommissionRate,
- string? Link,
- bool IsActive,
- int Order,
- int ProductCount,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|