| 1234567891011121314151617181920 |
- namespace Application.Features.Api.Forum.Board.Search;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int BoardGroupID,
- string BoardGroupName,
- string Code,
- string Name,
- short Order,
- bool IsSearch,
- bool IsActive,
- int Posts,
- int Comments,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|