| 123456789101112131415161718192021 |
- namespace Application.Features.Admin.Channel.List.Search;
- public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
- {
- public sealed record Row(
- int Num,
- int ID,
- string SID,
- string Name,
- string? Handle,
- string YouTubeUrl,
- decimal PlatformFeeRate,
- bool IsVerified,
- bool IsActive,
- int MemberID,
- string? MemberName,
- string? MemberEmail,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|