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.

Profile.cs 697 B

12345678910111213141516171819202122232425
  1. using System.Threading.Tasks;
  2. namespace Discord
  3. {
  4. public class Profile : IEntity<ulong>
  5. {
  6. public ulong Id { get; }
  7. public DiscordClient Discord { get; }
  8. public EntityState State { get; }
  9. public string AvatarId { get; }
  10. public string AvatarUrl { get; }
  11. public ushort Discriminator { get; }
  12. public string CurrentGame { get; }
  13. public UserStatus Status { get; }
  14. public string Mention { get; }
  15. public string Email { get; }
  16. public bool? IsVerified { get; }
  17. public string Name { get; set; }
  18. public Task Update() => null;
  19. public Task Delete() => null;
  20. }
  21. }