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.

Invite.cs 435 B

123456789101112131415161718
  1. using System;
  2. using System.Threading.Tasks;
  3. namespace Discord
  4. {
  5. public class Invite : BasicInvite
  6. {
  7. public int? MaxAge { get; }
  8. public int Uses { get; }
  9. public int? MaxUses { get; }
  10. public bool IsRevoked { get; }
  11. public bool IsTemporary { get; }
  12. public DateTime CreatedAt { get; }
  13. public override Task Update() => null;
  14. public Task Delete() => null;
  15. }
  16. }