namespace SumaTube.Models { public class VideoSummaryViewModel { public string VideoId { get; set; } public string VideoTitle { get; set; } public string ChannelName { get; set; } public string ChannelThumbnail { get; set; } public string PublishedDate { get; set; } public string ViewCount { get; set; } public string LikeCount { get; set; } public string CommentCount { get; set; } public string SummaryText { get; set; } public List KeyPoints { get; set; } public List Captions { get; set; } public List Keywords { get; set; } public List RelatedTopics { get; set; } public List RelatedVideos { get; set; } } }