Skip to content

Commit 0014f3f

Browse files
authored
Merge pull request #854 from hchen2020/master
Make name readonly
2 parents cad9200 + 8aa0646 commit 0014f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Infrastructure/BotSharp.Abstraction/Rules/IRuleTrigger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public interface IRuleTrigger
44
{
55
string Channel => throw new NotImplementedException("Please set the channel of trigger");
66

7-
string Name { get; set; }
7+
string Name => throw new NotImplementedException("Please set the name of trigger");
88

99
string EntityType { get; set; }
1010

0 commit comments

Comments
 (0)