using System; using PetaPoco; namespace Sony.Filtr.YouTube.Channels { [TableName("tblYoutubeChannelStatistics")] public class YouTubeChannelStatistics { public string ChannelId { get; set; } public DateTime Date { get; set; } public long Views { get; set; } public long Comments { get; set; } public long Subscribers { get; set; } public bool HiddenSubscribers { get; set; } public long Videos { get; set; } public DateTime Timestamp { get; set; } } }