using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Postall.Infra.Dtos { public class VideoItemResponse { public string Id { get; set; } public string Title { get; set; } public string Description { get; set; } public string ThumbnailUrl { get; set; } public DateTime PublishedAt { get; set; } public bool IsSelected { get; set; } // Propriedades adicionais que podem ser úteis no futuro public string ChannelTitle { get; set; } public string ChannelId { get; set; } public string VideoUrl => $"https://www.youtube.com/watch?v={Id}"; } }