NadekoBot/NadekoBot.Core/Common/ModuleBehaviors/ILateBlocker.cs

13 lines
349 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
2017-07-17 19:42:36 +00:00
namespace NadekoBot.Common.ModuleBehaviors
{
public interface ILateBlocker
{
Task<bool> TryBlockLate(DiscordSocketClient client, IUserMessage msg, IGuild guild,
IMessageChannel channel, IUser user, string moduleName, string commandName);
}
}