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

11 lines
197 B
C#

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