Response.cs 506 B

1234567891011121314151617181920212223
  1. namespace Application.Features.Forum.Post.Get
  2. {
  3. public sealed record Response(
  4. int ID,
  5. int BoardID,
  6. string BoardName,
  7. string Subject,
  8. string Content,
  9. string? Thumbnail,
  10. string? Name,
  11. string? SID,
  12. bool IsNotice,
  13. bool IsSecret,
  14. bool IsAnonymous,
  15. bool IsDeleted,
  16. int Views,
  17. int Likes,
  18. int Dislikes,
  19. int Comments,
  20. DateTime? UpdatedAt,
  21. DateTime CreatedAt
  22. );
  23. }