Spotify.NET/SpotifyAPI.Web/Models/SimpleArtist.cs

26 lines
619 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
public class SimpleArtist : BasicModel
{
[JsonProperty("external_urls")]
2016-03-31 11:08:23 +01:00
public Dictionary<string, string> ExternalUrls { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("href")]
2016-03-31 11:08:23 +01:00
public string Href { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("id")]
2016-03-31 11:08:23 +01:00
public string Id { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("name")]
2016-03-31 11:08:23 +01:00
public string Name { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("type")]
2016-03-31 11:08:23 +01:00
public string Type { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("uri")]
2016-03-31 11:08:23 +01:00
public string Uri { get; set; }
}
2015-07-26 13:02:22 +01:00
}