Make name readonly

This commit is contained in:
Haiping Chen 2025-01-29 16:33:50 -06:00
parent cad920097e
commit 8aa0646b88

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