mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
16 lines
361 B
C#
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; }
|
|||
|
}
|
|||
|
}
|