using PetaPoco; namespace Sony.Filtr.Spotify.Artists.Data { [TableName("tblSpotifyArtistFollowers")] [PrimaryKey("ArtistId", autoIncrement = false)] public class SpotifyArtistFollowers { public string ArtistId { get; set; } public int Followers { get; set; } } }