Spotify.NET/SpotifyAPI.Web/Models/Response/Context.cs
2020-05-07 18:03:20 +02:00

13 lines
302 B
C#

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; }
}
}