using System; using PetaPoco; namespace Sony.Filtr.YouTube.Videos { [TableName("tblYoutubeVideoStatistics")] public class YouTubeVideoStatistics { public string VideoId { get; set; } public DateTime Date { get; set; } public long Views { get; set; } public long Likes { get; set; } public long Dislikes { get; set; } public long Favorites { get; set; } public long Comments { get; set; } public DateTime Timestamp { get; set; } } }