using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data { [TableName("tblAppleMusicChart")] [PrimaryKey("Id", autoIncrement = true)] public class AppleMusicChart { public int Id { get; set; } public string Storefront { get; set; } public ChartType ChartType { get; set; } public string Chartname { get; set; } public int? GenreId { get; set; } public DateTime Date { get; set; } public DateTime Timestamp { get; set; } } }