Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RedditSharp/Things/Post.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ public Post(IWebAgent agent, JToken json) : base(agent, json)
/// </summary>
[JsonProperty("spoiler")]
public bool IsSpoiler { get; set; }

/// <summary>
/// Returns true if this post is pinned
/// </summary>
[JsonProperty("pinned")]
public bool IsPinned { get; set; }

/// <summary>
/// Returns true if this post is hidden
Expand Down