using PetaPoco; using Sony.Filtr.SpotifyWebAPI.Model; namespace Sony.Filtr.Playlists.Spotify.Model { [TableName("tblSpotifyAlbum")] public class LocalSpotifyAlbum { public string AlbumId { get; set; } public string Name { get; set; } public AlbumType AlbumType { get; set; } public int? Popularity { get; set; } public string Copyright { get; set; } public string Label { get; set; } public string Upc { get; set; } public string ReleaseDate { get; set; } public string ReleaseDatePrecision { get; set; } public string SmallImageFilename { get; set; } } }