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

11 lines
197 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
namespace SpotifyAPI.Local.Models
{
public class TrackResourceLocation
{
[JsonProperty("og")]
2016-03-31 11:08:23 +01:00
public string Og { get; set; }
}
}