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.
|
- 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;
- }
- }
|