using System; using System.Linq; namespace Sony.Filtr.Playlists.Spotify.Model { [Serializable] public class LocalSpotifyTrackArtist { public string Name { get; set; } public string Uri { get; set; } } }