Response.cs 413 B

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