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

44 lines
1015 B
C#
Raw Normal View History

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