Browse Source

Moved splash from ExtendedGuild to Guild

tags/docs-0.9
RogueException 9 years ago
parent
commit
a93a6dc95a
2 changed files with 2 additions and 2 deletions
  1. +0
    -2
      src/Discord.Net/API/Client/Common/ExtendedGuild.cs
  2. +2
    -0
      src/Discord.Net/API/Client/Common/Guild.cs

+ 0
- 2
src/Discord.Net/API/Client/Common/ExtendedGuild.cs View File

@@ -26,8 +26,6 @@ namespace Discord.API.Client
public bool? Unavailable { get; set; }

//Unknown
[JsonProperty("splash")]
public object Splash { get; set; }
[JsonProperty("features")]
public object Features { get; set; }
[JsonProperty("emojis")]


+ 2
- 0
src/Discord.Net/API/Client/Common/Guild.cs View File

@@ -24,5 +24,7 @@ namespace Discord.API.Client
public string Region { get; set; }
[JsonProperty("roles")]
public Role[] Roles { get; set; }
[JsonProperty("splash")]
public object Splash { get; set; }
}
}

Loading…
Cancel
Save