Response.cs 456 B

1234567891011121314151617181920
  1. namespace Application.Features.Forum.PostFile.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 FileName,
  12. string Url,
  13. string? Extension,
  14. long? Size,
  15. int Downloads,
  16. bool IsDisabled,
  17. DateTime CreatedAt
  18. );
  19. }