Moved splash from ExtendedGuild to Guild

This commit is contained in:
RogueException
2015-12-28 01:50:22 -04:00
parent 053b16d4e3
commit a93a6dc95a
2 changed files with 2 additions and 2 deletions

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")]

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; }
}
}