Response.cs 360 B

1234567891011121314151617
  1. namespace Application.Features.Admin.Banner.Item.Get;
  2. public sealed record Response(
  3. int ID,
  4. int PositionID,
  5. string Subject,
  6. string? DesktopImage,
  7. string? MobileImage,
  8. string? Link,
  9. string LinkTarget,
  10. short Order,
  11. bool IsActive,
  12. DateTime? StartAt,
  13. DateTime? EndAt,
  14. DateTime? UpdatedAt,
  15. DateTime CreatedAt
  16. );