We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2259f83 + 44ccd9d commit 78de6bbCopy full SHA for 78de6bb
RedditSharp/Things/Subreddit.cs
@@ -85,6 +85,18 @@ public class Subreddit : Thing
85
[JsonConverter(typeof(UrlParser))]
86
public Uri Url { get; set; }
87
88
+ /// <summary>
89
+ /// Property determining whether the current logged in user is a moderator on this subreddit.
90
+ /// </summary>
91
+ [JsonProperty("user_is_moderator")]
92
+ public bool UserIsModerator { get; set; }
93
+
94
95
+ /// Property determining whether the current logged in user is banned from the subreddit.
96
97
+ [JsonProperty("user_is_banned")]
98
+ public bool UserIsBanned { get; set; }
99
100
[JsonIgnore]
101
public string Name { get; set; }
102
0 commit comments