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

11 lines
212 B
C#

using Newtonsoft.Json;
using System;
namespace SpotifyAPI.Web.Models
{
public class Snapshot : BasicModel
{
[JsonProperty("snapshot_id")]
public String SnapshotId { get; set; }
}
}