Response.cs 375 B

12345678910111213141516
  1. namespace Application.Features.Admin.Forum.BoardPrefix.GetAll;
  2. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int ID,
  6. int BoardID,
  7. string Name,
  8. string? Color,
  9. short Order,
  10. int Posts,
  11. bool IsActive,
  12. string? UpdatedAt,
  13. string CreatedAt
  14. );
  15. }