mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
10 lines
284 B
C#
10 lines
284 B
C#
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);
|
|
}
|
|
|
|
} |