using System.Collections.Generic; namespace SpotifyAPI.Web { public class SimpleArtist { public Dictionary ExternalUrls { get; set; } public string Href { get; set; } public string Id { get; set; } public string Name { get; set; } public string Type { get; set; } public string Uri { get; set; } } }