| 123456789101112131415161718192021 |
- namespace Application.Features.Forum.Comment.Get;
- public sealed record Response(
- int ID,
- int BoardID,
- string BoardName,
- int PostID,
- string PostSubject,
- string Content,
- string? Name,
- string? SID,
- bool IsReply,
- bool IsSecret,
- bool IsDeleted,
- int Likes,
- int Dislikes,
- int Reports,
- int Replies,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
|