Merge pull request #854 from hchen2020/master

Make name readonly
This commit is contained in:
Haiping 2025-01-29 16:34:47 -06:00 committed by GitHub
commit 0014f3f567
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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; }