Browse Source

fix renamed folder issue

pull/2156/head
Quin Lynch 3 years ago
parent
commit
7b9fe752a9
2 changed files with 12 additions and 22 deletions
  1. +0
    -20
      samples/04_interactions_framework/ExampleEnum.cs
  2. +12
    -2
      samples/InteractionFramework/ExampleEnum.cs

+ 0
- 20
samples/04_interactions_framework/ExampleEnum.cs View File

@@ -1,20 +0,0 @@
using Discord.Interactions;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _04_interactions_framework
{
public enum ExampleEnum
{
First,
Second,
Third,
Fourth,
[ChoiceDisplay("Twenty First")]
TwentyFirst
}
}

+ 12
- 2
samples/InteractionFramework/ExampleEnum.cs View File

@@ -1,10 +1,20 @@
namespace InteractionFramework
using Discord.Interactions;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _04_interactions_framework
{
public enum ExampleEnum
{
First,
Second,
Third,
Fourth
Fourth,
[ChoiceDisplay("Twenty First")]
TwentyFirst
}
}

Loading…
Cancel
Save