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

11 lines
212 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
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")]
2016-03-31 11:08:23 +01:00
public string SnapshotId { get; set; }
2015-02-27 15:28:33 +00:00
}
}