The slash commands can now use interactions
This commit is contained in:
22
ExtendedDiscordUIControls/Controls/Dropdown.cs
Normal file
22
ExtendedDiscordUIControls/Controls/Dropdown.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using ExtendedDiscordUIControls.Controls.SubItems;
|
||||
|
||||
namespace ExtendedDiscordUIControls.Controls
|
||||
{
|
||||
public class Dropdown
|
||||
{
|
||||
public List<DropDownItem> Items { get; private set; }
|
||||
|
||||
public Dropdown(List<DropDownItem> items) {
|
||||
Items = items;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user