Response.cs 375 B

12345678910111213141516
  1. namespace Application.Features.Admin.Popup.Position.GetAll;
  2. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. int Index,
  8. string Code,
  9. string Subject,
  10. int PopupRows,
  11. bool IsActive,
  12. DateTime? UpdatedAt,
  13. DateTime CreatedAt
  14. );
  15. }