Spotify.NET/SpotifyAPI.Web/Models/Snapshot.cs

10 lines
181 B
C#
Raw Normal View History

using Newtonsoft.Json;
2015-02-27 15:28:33 +00:00
namespace SpotifyAPI.Web.Models
2015-02-27 15:28:33 +00:00
{
public class Snapshot : BasicModel
{
[JsonProperty("snapshot_id")]
public string SnapshotId { get; set; }
}
2015-02-27 15:28:33 +00:00
}