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

11 lines
197 B
C#

using System;
using Newtonsoft.Json;
namespace SpotifyAPI.Local.Models
{
public class TrackResourceLocation
{
[JsonProperty("og")]
public String Og { get; set; }
}
}