Claned up mentions, added sanitize handler to user/role/channel mentions

This commit is contained in:
RogueException
2016-10-06 00:20:26 -03:00
parent 7e246f942e
commit 2f3831dd6e
8 changed files with 223 additions and 220 deletions

View File

@@ -1,7 +1,6 @@
#pragma warning disable CS1591
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;
namespace Discord.API.Gateway
{
@@ -14,6 +13,6 @@ namespace Discord.API.Gateway
public int Limit { get; set; }
[JsonProperty("guild_id")]
private ulong[] GuildIds { get; set; }
public IEnumerable<ulong> GuildIds { get; set; }
}
}