Response.cs 464 B

123456789101112131415161718
  1. namespace Application.Features.Admin.Faq.Category.GetAll
  2. {
  3. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  4. {
  5. public sealed record Row(
  6. int Num,
  7. int ID,
  8. int Index,
  9. string Code,
  10. string Subject,
  11. short Order,
  12. bool IsActive,
  13. ushort FaqItemRows,
  14. DateTime? UpdatedAt,
  15. DateTime CreatedAt
  16. );
  17. }
  18. }