mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
9f6729ad60
Disabled examples for now
13 lines
308 B
C#
13 lines
308 B
C#
using System.Collections.Generic;
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class LinkedTrack
|
|
{
|
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
|
public string Href { get; set; }
|
|
public string Id { get; set; }
|
|
public string Type { get; set; }
|
|
public string Uri { get; set; }
|
|
}
|
|
}
|