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

14 lines
313 B
C#

using Newtonsoft.Json;
using System;
namespace SpotifyAPI.Local.Models
{
public class OpenGraphState
{
[JsonProperty("private_session")]
public Boolean PrivateSession { get; set; }
[JsonProperty("posting_disabled")]
public Boolean PostingDisabled { get; set; }
}
}