BotSharp/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleEngine.cs
2025-05-07 17:44:48 -05:00

7 lines
183 B
C#

namespace BotSharp.Abstraction.Rules;
public interface IRuleEngine
{
Task<IEnumerable<string>> Triggered(IRuleTrigger trigger, string data, List<MessageState>? states = null);
}