Isolated AvatarImageType

This commit is contained in:
RogueException
2015-10-18 09:11:54 -03:00
parent 443c43b643
commit c6a3fad80f
2 changed files with 9 additions and 7 deletions

View File

@@ -8,13 +8,6 @@ using System.Threading.Tasks;
namespace Discord
{
public enum AvatarImageType
{
None,
Jpeg,
Png
}
public partial class DiscordClient
{
public const int MaxMessageSize = 2000;

View File

@@ -0,0 +1,9 @@
namespace Discord
{
public enum AvatarImageType
{
None,
Jpeg,
Png
}
}