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

13 lines
302 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class Context
{
public Dictionary<string, string> ExternalUrls { get; private set; }
public string Href { get; private set; }
public string Type { get; private set; }
public string Uri { get; private set; }
}
}