BotSharp/src/Infrastructure/BotSharp.Core.Rules/Engines/IRuleEngine.cs

9 lines
199 B
C#
Raw Normal View History

2025-01-28 23:00:08 +00:00
using BotSharp.Abstraction.Models;
2025-01-02 21:29:30 +00:00
namespace BotSharp.Core.Rules.Engines;
public interface IRuleEngine
{
2025-01-28 23:00:08 +00:00
Task Triggered(IRuleTrigger trigger, string data, List<MessageState>? states = null);
2025-01-02 21:29:30 +00:00
}