Updated reference channel entities

This commit is contained in:
RogueException
2016-02-26 05:22:01 -04:00
parent d1cae981da
commit 0759f957d8
23 changed files with 298 additions and 162 deletions

View File

@@ -1,8 +1,13 @@
namespace Discord
using System;
namespace Discord
{
public enum ChannelType
[Flags]
public enum ChannelType : byte
{
Text,
Voice
Public = 0x01,
Private = 0x02,
Text = 0x10,
Voice = 0x20
}
}

View File

@@ -1,6 +1,6 @@
namespace Discord
{
public enum MessageState : byte
public enum ModelState : byte
{
/// <summary> Message did not originate from this session, or was successfully sent. </summary>
Normal = 0,