Spotify.NET/SpotifyAPI/Local/Models/OpenGraphState.cs

14 lines
313 B
C#
Raw Normal View History

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; }
}
}