antiantiswearingbot/Jetsparrow.Aasb/Commands/IChatCommand.cs
2023-03-26 22:40:44 +03:00

7 lines
141 B
C#

namespace Jetsparrow.Aasb.Commands;
public interface IChatCommand
{
bool Authorize { get; }
string Execute(CommandContext cmd);
}