Files
Orchard/src/Orchard.Web/Modules/Orchard.AntiSpam/Rules/IRulesManager.cs
T

10 lines
284 B
C#
Raw Normal View History

2012-08-22 15:34:39 -07:00
using System;
using System.Collections.Generic;
using Orchard.Events;
namespace Orchard.AntiSpam.Rules {
public interface IRulesManager : IEventHandler {
void TriggerEvent(string category, string type, Func<Dictionary<string, object>> tokensContext);
}
}