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.

IUser.cs 443 B

12345678910111213141516171819
  1. using System.Threading.Tasks;
  2. namespace Discord
  3. {
  4. public interface IUser : IEntity<ulong>, IMentionable
  5. {
  6. bool IsPrivate { get; }
  7. string Name { get; }
  8. ushort Discriminator { get; }
  9. bool IsBot { get; }
  10. string AvatarId { get; }
  11. string AvatarUrl { get; }
  12. string CurrentGame { get; }
  13. UserStatus Status { get; }
  14. Task<PrivateChannel> GetPrivateChannel();
  15. }
  16. }