Renamed PluginManager to DiscordBotCore.
Revamped the Logger
This commit is contained in:
14
DiscordBotCore/Others/Actions/InternalActionOption.cs
Normal file
14
DiscordBotCore/Others/Actions/InternalActionOption.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace DiscordBotCore.Others.Actions
|
||||
{
|
||||
public class InternalActionOption
|
||||
{
|
||||
public string OptionName { get; set; }
|
||||
public string OptionDescription { get; set; }
|
||||
|
||||
public InternalActionOption(string optionName, string optionDescription)
|
||||
{
|
||||
OptionName = optionName;
|
||||
OptionDescription = optionDescription;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user