Response.cs 505 B

12345678910111213141516171819202122
  1. namespace Application.Features.Forum.CommentImage.Search;
  2. public sealed record Response(int Total, List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. int BoardID,
  8. string BoardName,
  9. int PostID,
  10. string PostSubject,
  11. int CommentID,
  12. string FileName,
  13. string Url,
  14. string? Extension,
  15. long? Size,
  16. short? Width,
  17. short? Height,
  18. bool IsDisabled,
  19. DateTime CreatedAt
  20. );
  21. }