Response.cs 698 B

12345678910111213141516171819202122232425262728293031
  1. namespace Application.Features.Admin.Forum.Post.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. string Subject,
  10. string? Thumbnail,
  11. string? Name,
  12. string? SID,
  13. bool IsNotice,
  14. bool IsSecret,
  15. bool IsReply,
  16. bool IsSpeaker,
  17. bool IsAnonymous,
  18. bool IsDeleted,
  19. int Views,
  20. int Likes,
  21. int Dislikes,
  22. int Comments,
  23. byte Images,
  24. byte Medias,
  25. byte Files,
  26. byte Tags,
  27. DateTime? UpdatedAt,
  28. DateTime CreatedAt
  29. );
  30. }