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

13 lines
270 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class Context
{
public Dictionary<string, string> ExternalUrls { get; set; }
public string Href { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
}
}