@using Postall.Domain.Dtos @model List @{ ViewData["Title"] = "Meus Canais"; }

Meus Canais

Gerencie seus canais do YouTube

@if (TempData["Message"] != null) { } @if (TempData["Error"] != null) { }
@if (Model != null && Model.Any()) { foreach (var channel in Model) {
@channel.Title
@channel.Title

@(channel.Description?.Length > 100 ? channel.Description.Substring(0, 100) + "..." : channel.Description)

@channel.SubscriberCount.ToString("N0") inscritos @channel.VideoCount.ToString("N0") vídeos
} } else {
Você ainda não possui canais. Clique em "Adicionar Canal" para começar.
}