BotSharp/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleEngine.cs

7 lines
183 B
C#
Raw Normal View History

2025-05-07 22:44:48 +00:00
namespace BotSharp.Abstraction.Rules;
2025-01-02 21:29:30 +00:00
public interface IRuleEngine
{
Task<IEnumerable<string>> Triggered(IRuleTrigger trigger, string data, List<MessageState>? states = null);
2025-01-02 21:29:30 +00:00
}