2015-02-27 15:28:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2015-07-07 17:11:11 +01: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; }
|
|
|
|
|
}
|
|
|
|
|
}
|