Ref project update
This commit is contained in:
19
ref/Entities/Users/IUser.cs
Normal file
19
ref/Entities/Users/IUser.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Discord
|
||||
{
|
||||
public interface IUser : IEntity<ulong>, IMentionable
|
||||
{
|
||||
bool IsPrivate { get; }
|
||||
|
||||
string Name { get; }
|
||||
ushort Discriminator { get; }
|
||||
bool IsBot { get; }
|
||||
string AvatarId { get; }
|
||||
string AvatarUrl { get; }
|
||||
string CurrentGame { get; }
|
||||
UserStatus Status { get; }
|
||||
|
||||
Task<PrivateChannel> GetPrivateChannel();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user