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

13 lines
270 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; set; }
public string Href { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
2020-05-07 17:03:20 +01:00
}
}