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

22 lines
716 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
{
2020-05-25 17:00:38 +01:00
public string Country { get; set; } = default!;
public string DisplayName { get; set; } = default!;
public string Email { get; set; } = default!;
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
public Followers Followers { get; set; } = default!;
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
public List<Image> Images { get; set; } = default!;
public string Product { get; set; } = default!;
public string Type { get; set; } = default!;
public string Uri { get; set; } = default!;
}
2020-05-01 19:05:28 +01:00
}
2020-05-25 17:00:38 +01:00