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

33 lines
817 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class PublicProfile : BasicModel
{
[JsonProperty("display_name")]
public String DisplayName { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("external_urls")]
public Dictionary<string, string> ExternalUrls { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("followers")]
public Followers Followers { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("href")]
public String Href { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("id")]
public String Id { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("images")]
public List<Image> Images { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("type")]
public String Type { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("uri")]
public String Uri { get; set; }
}
2015-07-26 13:02:22 +01:00
}