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 605 B

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