Added reference project

This commit is contained in:
RogueException
2016-02-24 19:36:18 -04:00
parent 27d7e9915b
commit 36ea8b8c3a
68 changed files with 1515 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace Discord
{
public interface IChannel : IModel<ulong>
{
DiscordClient Client { get; }
ChannelType Type { get; }
bool IsText { get; }
bool IsVoice { get; }
bool IsPrivate { get; }
bool IsPublic { get; }
IEnumerable<User> Users { get; }
}
}