Spotify.NET/SpotifyAPI/Local/Models/SpotifyResource.cs
mrnikbobjeff 49441bba95 Formatted and beautified code via codemaid
Organised using statements alphabetically
2015-10-17 00:44:35 +02:00

17 lines
362 B
C#

using Newtonsoft.Json;
using System;
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; }
}
}