mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
21 lines
678 B
C#
21 lines
678 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class PrivateUser
|
|
{
|
|
public string Country { get; private set; }
|
|
public string DisplayName { get; private set; }
|
|
public string Email { get; private set; }
|
|
public Dictionary<string, string> ExternalUrls { get; private set; }
|
|
public Followers Followers { get; private set; }
|
|
public string Href { get; private set; }
|
|
public string Id { get; private set; }
|
|
public List<Image> Images { get; private set; }
|
|
public string Product { get; private set; }
|
|
public string Type { get; private set; }
|
|
public string Uri { get; private set; }
|
|
}
|
|
}
|