using System; using System.Threading.Tasks; namespace Sony.Filtr.Contracts.SpotifyIntegration { [Serializable] public class SpotifyAlbum { public string Name { get; set; } public string LinkString { get; set; } public SpotifyArtist Artist { get; set; } } }