| 1234567891011121314151617 |
- namespace Application.Features.Admin.Store.GameLanguage.GetAll;
- public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int Index,
- string KorName,
- string? EngName,
- int Order,
- bool IsActive,
- int GameCount,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|