Moved features and emojis from ExtendedGuild to Guild

This commit is contained in:
RogueException
2015-12-29 01:57:17 -04:00
parent 1be69ad3fa
commit 779ee46489
2 changed files with 5 additions and 6 deletions

View File

@@ -24,11 +24,5 @@ namespace Discord.API.Client
public bool IsLarge { get; set; }
[JsonProperty("unavailable")]
public bool? Unavailable { get; set; }
//Unknown
[JsonProperty("features")]
public object Features { get; set; }
[JsonProperty("emojis")]
public object Emojis { get; set; }
}
}

View File

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