diff --git a/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs index f5593735..7b6c9bc2 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs @@ -4,7 +4,7 @@ public interface IRuleTrigger { string Channel => throw new NotImplementedException("Please set the channel of trigger"); - string Name { get; set; } + string Name => throw new NotImplementedException("Please set the name of trigger"); string EntityType { get; set; }