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