Files
nadekobot/src/NadekoBot/Common/ModuleBehaviors/ILateBlocker.cs
2021-12-29 06:07:16 +01:00

8 lines
206 B
C#

namespace NadekoBot.Common.ModuleBehaviors;
public interface ILateBlocker
{
public int Priority { get; }
Task<bool> TryBlockLate(ICommandContext context, string moduleName, CommandInfo command);
}