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

14 lines
346 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-05-01 19:05:28 +01:00
namespace SpotifyAPI.Web
{
2020-05-01 19:05:28 +01:00
public class SimpleArtist
{
public Dictionary<string, string> ExternalUrls { get; set; }
public string Href { get; set; }
public string Id { get; set; }
public string Name { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
}
}