Spotify.NET/SpotifyAPI/Local/Models/SpotifyResource.cs
2015-07-07 18:11:11 +02:00

16 lines
361 B
C#

using System;
using Newtonsoft.Json;
namespace SpotifyAPI.Local.Models
{
public class SpotifyResource
{
[JsonProperty("name")]
public String Name { get; set; }
[JsonProperty("uri")]
public String Uri { get; set; }
[JsonProperty("location")]
public TrackResourceLocation Location { get; set; }
}
}