using System.Collections.Generic; using System.Threading.Tasks; namespace Discord { public interface IChannel : IEntity { /// Gets the type flags for this channel. ChannelType Type { get; } /// Gets the name of this channel. string Name { get; } /// Gets a user in this channel with the given id. Task GetUser(ulong id); /// Gets a collection of all users in this channel. Task> GetUsers(); } }