mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
7 lines
No EOL
181 B
C#
7 lines
No EOL
181 B
C#
namespace Boyfriend.Commands;
|
|
|
|
public abstract class Command {
|
|
public abstract string[] Aliases { get; }
|
|
|
|
public abstract Task Run(CommandProcessor cmd, string[] args);
|
|
} |