| 1234567891011121314151617 |
- namespace Application.Features.Banner.Item.Get
- {
- public sealed record Response(
- int ID,
- int PositionID,
- string Subject,
- string? DesktopImage,
- string? MobileImage,
- string? Link,
- short Order,
- bool IsActive,
- DateTime? StartAt,
- DateTime? EndAt,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|