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.
1 parent 3e694a7 commit 78166d4Copy full SHA for 78166d4
RedditSharp/Things/Subreddit.cs
@@ -91,6 +91,13 @@ public class Subreddit : Thing
91
[JsonProperty("user_is_moderator")]
92
public bool UserIsModerator { get; set; }
93
94
+ /// <summary>
95
+ /// Property giving the moderator permissions of the logged in user on this subreddit.
96
+ /// </summary>
97
+ [JsonProperty("mod_permissions")]
98
+ [JsonConverter(typeof(ModeratorPermissionConverter))]
99
+ public ModeratorPermission ModPermissions { get; set; }
100
+
101
/// <summary>
102
/// Property determining whether the current logged in user is banned from the subreddit.
103
/// </summary>
0 commit comments