using System.Linq; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data { [TableName("tblAppleMusicChartSongEntry")] public class AppleMusicChartSongEntry : IAppleMusicChartEntry { public int ChartId { get; set; } public int Position { get; set; } public long SongId { get; set; } public string Name { get; set; } public string ArtistName { get; set; } [ResultColumn] public string ISRC { get; set; } } }