using System.Linq; using PetaPoco; namespace Sony.Filtr.Spotify.Artists.Data { [TableName("tblSpotifyArtist")] public class SpotifyArtist { public string ArtistId { get; set; } public string Name { get; set; } } }