14 lines
188 B
C#
14 lines
188 B
C#
using Discord.Interactions;
|
|
|
|
namespace InteractionFramework;
|
|
|
|
public enum ExampleEnum
|
|
{
|
|
First,
|
|
Second,
|
|
Third,
|
|
Fourth,
|
|
[ChoiceDisplay("Twenty First")]
|
|
TwentyFirst
|
|
}
|