BotSharp/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs
2025-01-29 16:33:50 -06:00

13 lines
328 B
C#

namespace BotSharp.Abstraction.Rules;
public interface IRuleTrigger
{
string Channel => throw new NotImplementedException("Please set the channel of trigger");
string Name => throw new NotImplementedException("Please set the name of trigger");
string EntityType { get; set; }
string EntityId { get; set; }
}