| 12345678910111213141516171819202122232425 |
- namespace Application.Features.Admin.Forum.Comment.Search;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- 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
- );
- }
|