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.

ExampleEnum.cs 387 B

1234567891011121314151617181920
  1. using Discord.Interactions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace InteractionFramework
  9. {
  10. public enum ExampleEnum
  11. {
  12. First,
  13. Second,
  14. Third,
  15. Fourth,
  16. [ChoiceDisplay("Twenty First")]
  17. TwentyFirst
  18. }
  19. }