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

44 lines
1.1 KiB
C#
Raw Normal View History

using Newtonsoft.Json;
using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
public class PrivateProfile : BasicModel
{
[JsonProperty("birthdate")]
2016-03-31 11:08:23 +01:00
public string Birthdate { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("country")]
2016-03-31 11:08:23 +01:00
public string Country { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("display_name")]
2016-03-31 11:08:23 +01:00
public string DisplayName { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("email")]
2016-03-31 11:08:23 +01:00
public string Email { 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")]
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("images")]
public List<Image> Images { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("product")]
2016-03-31 11:08:23 +01:00
public string Product { 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
}