Response.cs 423 B

123456789101112131415161718
  1. namespace Application.Features.Admin.Forum.Trash.Comment.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. string Content,
  12. string? Name,
  13. string? SID,
  14. DateTime? DeletedAt,
  15. DateTime CreatedAt
  16. );
  17. }