| 1234567891011121314151617 |
- namespace Application.Features.Admin.Banner.Position.GetAll
- {
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- int Index,
- string Code,
- string Subject,
- int BannerItemRows,
- bool IsActive,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
- }
|