mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
24 lines
750 B
C#
24 lines
750 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class SimpleTrack
|
||
|
{
|
||
|
public List<SimpleArtist> Artists { get; set; }
|
||
|
public List<string> AvailableMarkets { get; set; }
|
||
|
public int DiscNumber { get; set; }
|
||
|
public int DurationMs { get; set; }
|
||
|
public bool Explicit { get; set; }
|
||
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
||
|
public string Href { get; set; }
|
||
|
public string Id { get; set; }
|
||
|
public bool IsPlayable { get; set; }
|
||
|
public LinkedTrack LinkedFrom { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public string PreviewUrl { get; set; }
|
||
|
public int TrackNumber { get; set; }
|
||
|
public ElementType Type { get; set; }
|
||
|
public string Uri { get; set; }
|
||
|
}
|
||
|
}
|