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

45 lines
1.1 KiB
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
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
}