Browse Source

Added Splash to UpdateGuildRequest

pull/22/merge
RogueException 9 years ago
parent
commit
b7eb5f8698
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/Discord.Net/API/Client/Rest/UpdateGuild.cs

+ 2
- 0
src/Discord.Net/API/Client/Rest/UpdateGuild.cs View File

@@ -23,6 +23,8 @@ namespace Discord.API.Client.Rest
public ulong? AFKChannelId { get; set; } public ulong? AFKChannelId { get; set; }
[JsonProperty("afk_timeout")] [JsonProperty("afk_timeout")]
public int AFKTimeout { get; set; } public int AFKTimeout { get; set; }
[JsonProperty("splash")]
public string Splash { get; set; }


public UpdateGuildRequest(ulong guildId) public UpdateGuildRequest(ulong guildId)
{ {


Loading…
Cancel
Save