using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data { [TableName("tblAppleMusicGenre")] public class AppleMusicChartGenre { public string Storefront { get; set; } public long GenreId { get; set; } public string Name { get; set; } } }