| 123456789101112131415161718 |
- namespace Application.Features.Admin.Faq.Category.GetAll
- {
- public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int Index,
- string Code,
- string Subject,
- short Order,
- bool IsActive,
- ushort FaqItemRows,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
- }
|