mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
13 lines
312 B
C#
13 lines
312 B
C#
|
using System;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace SpotifyAPI.Local.Models
|
|||
|
{
|
|||
|
public class OpenGraphState
|
|||
|
{
|
|||
|
[JsonProperty("private_session")]
|
|||
|
public Boolean PrivateSession { get; set; }
|
|||
|
[JsonProperty("posting_disabled")]
|
|||
|
public Boolean PostingDisabled { get; set; }
|
|||
|
}
|
|||
|
}
|