Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Rest/RoleCreate.cs
2017-05-27 10:48:11 +02:00

23 lines
435 B
C#

using Newtonsoft.Json;
namespace Maki.Structures.Rest
{
internal struct RoleCreate
{
[JsonProperty("name")]
public string Name;
[JsonProperty("permissions")]
public DiscordPermission Perms;
[JsonProperty("color")]
public int Colour;
[JsonProperty("hoist")]
public bool Hoist;
[JsonProperty("mentionable")]
public bool Mentionable;
}
}