Response.cs 482 B

123456789101112131415161718192021
  1. namespace Application.Features.Forum.CommentFile.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. int Downloads,
  17. bool IsDisabled,
  18. DateTime CreatedAt
  19. );
  20. }