| 123456789101112131415 |
- namespace Application.Features.Api.Channel.GetByIds;
- public sealed record Response(List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- string SID,
- string Name,
- string? Handle,
- string? ThumbnailUrl,
- long SubscriberCount,
- bool IsVerified,
- string? DonationCode
- );
- }
|