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

11 lines
197 B
C#
Raw Normal View History

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