Browse Source

Added splash_hash to InviteReference.guild

tags/docs-0.9
RogueException 9 years ago
parent
commit
13a4a1808b
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      src/Discord.Net/API/Client/Common/InviteReference.cs

+ 7
- 1
src/Discord.Net/API/Client/Common/InviteReference.cs View File

@@ -4,8 +4,14 @@ namespace Discord.API.Client
{
public class InviteReference
{
public sealed class GuildData : GuildReference
{
[JsonProperty("splash_hash")]
public string Splash { get; set; }
}

[JsonProperty("guild")]
public GuildReference Guild { get; set; }
public GuildData Guild { get; set; }
[JsonProperty("channel")]
public ChannelReference Channel { get; set; }
[JsonProperty("code")]


Loading…
Cancel
Save