Spotify.NET/SpotifyAPI/Local/Models/SpotifyResource.cs

16 lines
361 B
C#
Raw Normal View History

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