Files
Discord.Net/ref/Entities/Profile.cs
2016-02-26 05:22:01 -04:00

24 lines
606 B
C#

using System.Threading.Tasks;
namespace Discord
{
public class Profile : IEntity<ulong>
{
public DiscordClient Client { get; }
public ulong Id { get; }
public string AvatarId { get; }
public string AvatarUrl { get; }
public ushort Discriminator { get; }
public string CurrentGame { get; }
public UserStatus Status { get; }
public string Mention { get; }
public string Email { get; }
public bool? IsVerified { get; }
public string Name { get; set; }
public Task Save() => null;
}
}