Response.cs 424 B

1234567891011121314151617
  1. namespace Application.Features.Banner.Position.GetAll
  2. {
  3. public sealed record Response(int Total, List<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. int BannerItemRows,
  12. bool IsActive,
  13. DateTime? UpdatedAt,
  14. DateTime CreatedAt
  15. );
  16. }
  17. }