namespace Application.Features.Api.Channel.List; public sealed record Response(IReadOnlyList Channels); public sealed record ChannelItem( string ChannelSID, string Name, string? Handle, string? ThumbnailUrl, long SubscriberCount, bool IsLive, int ViewerCount, string? VideoId );