Response.cs 402 B

1234567891011121314151617
  1. namespace Application.Features.Admin.Store.GameLanguage.GetAll;
  2. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. int Index,
  8. string KorName,
  9. string? EngName,
  10. int Order,
  11. bool IsActive,
  12. int GameCount,
  13. DateTime? UpdatedAt,
  14. DateTime CreatedAt
  15. );
  16. }