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

11 lines
212 B
C#
Raw Normal View History

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