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