Response.cs 593 B

12345678910111213141516171819202122
  1. namespace Application.Features.Admin.MemberGrade.GetAll
  2. {
  3. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  4. {
  5. public sealed record Row(
  6. int Num,
  7. int ID,
  8. string KorName,
  9. string EngName,
  10. string? Description,
  11. short Order,
  12. string? Image,
  13. string? TextColor,
  14. int RequiredExp,
  15. long RequiredAttendance,
  16. bool IsActive,
  17. int MemberRows,
  18. DateTime? UpdatedAt,
  19. DateTime CreatedAt
  20. );
  21. }
  22. }