2025-01-24 21:50:28 +00:00
|
|
|
namespace BotSharp.Abstraction.Rules;
|
2025-01-02 21:29:30 +00:00
|
|
|
|
|
|
|
|
public interface IRuleTrigger
|
|
|
|
|
{
|
|
|
|
|
string Channel => throw new NotImplementedException("Please set the channel of trigger");
|
|
|
|
|
|
2025-01-29 22:33:50 +00:00
|
|
|
string Name => throw new NotImplementedException("Please set the name of trigger");
|
2025-01-08 20:49:15 +00:00
|
|
|
|
2025-01-02 21:29:30 +00:00
|
|
|
string EntityType { get; set; }
|
|
|
|
|
|
|
|
|
|
string EntityId { get; set; }
|
|
|
|
|
}
|