| 12345678910111213141516171819202122 |
- namespace Application.Features.Admin.Forum.CommentImage.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,
- int CommentID,
- string FileName,
- string Url,
- string? Extension,
- long? Size,
- short? Width,
- short? Height,
- bool IsDisabled,
- DateTime CreatedAt
- );
- }
|