13 lines
349 B
C#
Raw Normal View History

2017-07-17 21:42:36 +02:00
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
2017-07-17 21:42:36 +02: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);
}
}