mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
49441bba95
Organised using statements alphabetically
14 lines
313 B
C#
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; }
|
|
}
|
|
} |