Files
SethDiscordBot/DiscordBot/IStartupAction.cs
2024-05-21 21:33:42 +03:00

10 lines
180 B
C#

using System;
namespace DiscordBot
{
internal interface IStartupAction
{
string Command { get; init; }
Action<string[]> RunAction { get; init; }
}
}