using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data { [TableName("tblAppleMusicChartAlbumEntry")] public class AppleMusicChartAlbumEntry : IAppleMusicChartEntry { public int ChartId { get; set; } public int Position { get; set; } public long AlbumId { get; set; } public string Name { get; set; } public string ArtistName { get; set; } } }