| 12345678910111213141516171819 |
- namespace Application.Features.Admin.Forum.BoardGroup.GetAll
- {
- public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int Index,
- string Code,
- string Name,
- short Order,
- short Boards,
- int Posts,
- int Comments,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
- }
|