10 lines
180 B
C#
10 lines
180 B
C#
using System;
|
|
|
|
namespace DiscordBot
|
|
{
|
|
internal interface IStartupAction
|
|
{
|
|
string Command { get; init; }
|
|
Action<string[]> RunAction { get; init; }
|
|
}
|
|
} |