1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 17:19:00 +03:00
Octobot/Boyfriend/Commands/Command.cs

7 lines
181 B
C#
Raw Normal View History

namespace Boyfriend.Commands;
public abstract class Command {
2022-05-14 16:12:24 +03:00
public abstract string[] Aliases { get; }
public abstract Task Run(CommandProcessor cmd, string[] args);
}