using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [TableName("tblSpotifyNewMusicFridayPlaylist")] [PrimaryKey("PlaylistId", autoIncrement = false)] public class SpotifyNewMusicFridayPlaylist { public string PlaylistId { get; set; } public string Market { get; set; } } }