using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data { [TableName("tblAppleMusicChartSongMostPlayed")] public class AppleMusicChartSongMostPlayedSongEntry { public string Storefront { get; set; } public int Position { get; set; } public long SongId { get; set; } public string ArtistName { get; set; } public string Name { get; set; } public DateTime Date { get; set; } } }