13 lines
328 B
C#
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; }
|
|
}
|