29 lines
692 B
C#
29 lines
692 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace RedditSharp
|
|
{
|
|
public class ModeratorUser
|
|
{
|
|
public ModeratorUser(Reddit reddit, JToken json)
|
|
{
|
|
JsonConvert.PopulateObject(json.ToString(), this, reddit.JsonSerializerSettings);
|
|
}
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonProperty("mod_permissions")]
|
|
[JsonConverter(typeof (ModeratorPermissionConverter))]
|
|
public ModeratorPermission Permissions { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|