You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

IChannel.cs 371 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace Discord
  3. {
  4. public interface IChannel : IModel<ulong>
  5. {
  6. DiscordClient Client { get; }
  7. ChannelType Type { get; }
  8. bool IsText { get; }
  9. bool IsVoice { get; }
  10. bool IsPrivate { get; }
  11. bool IsPublic { get; }
  12. IEnumerable<User> Users { get; }
  13. }
  14. }