Files
Discord.Net/ref/Entities/Channels/IChannel.cs
2016-02-24 19:36:18 -04:00

18 lines
371 B
C#

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; }
}
}