Response.cs 478 B

12345678910111213141516171819
  1. namespace Application.Features.Admin.Forum.BoardGroup.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. int Index,
  9. string Code,
  10. string Name,
  11. short Order,
  12. short Boards,
  13. int Posts,
  14. int Comments,
  15. DateTime? UpdatedAt,
  16. DateTime CreatedAt
  17. );
  18. }
  19. }