7 lines
146 B
C#
7 lines
146 B
C#
namespace DiscordBotWebUI.StartupActions;
|
|
|
|
internal interface IStartupAction
|
|
{
|
|
string Command { get; }
|
|
void RunAction(string[] args);
|
|
} |