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

18 lines
528 B
C#
Raw Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
2020-05-01 19:05:28 +01:00
namespace SpotifyAPI.Web
{
2020-05-01 19:05:28 +01:00
public class PublicUser
{
public string DisplayName { 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 Type { get; private set; }
public string Uri { get; private set; }
}
2020-05-01 19:05:28 +01:00
}