| 123456789101112131415161718 |
- namespace Application.Features.Faq.Category.Get
- {
- 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,
- string? UpdatedAt,
- string CreatedAt
- );
- }
- }
|