Spotify.NET/SpotifyAPI.Web/Models/Response/PrivateUser.cs

21 lines
583 B
C#
Raw Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
2020-05-01 19:05:28 +01:00
public class PrivateUser
{
public string Country { get; set; }
public string DisplayName { get; set; }
public string Email { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; }
public Followers Followers { get; set; }
public string Href { get; set; }
public string Id { get; set; }
public List<Image> Images { get; set; }
public string Product { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
}
2020-05-01 19:05:28 +01:00
}