| 1234567891011121314151617181920212223 |
- namespace Application.Features.Banner.Item.Search
- {
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int PositionID,
- string PositionCode,
- string PositionSubject,
- string Subject,
- string? DesktopImage,
- string? MobileImage,
- string? Link,
- short Order,
- bool IsActive,
- DateTime? StartAt,
- DateTime? EndAt,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
- }
|