Skip to content

Commit

Permalink
优化 情景节点执行时间不再进行序列化保存
Browse files Browse the repository at this point in the history
  • Loading branch information
MakesYT committed Jan 1, 2025
1 parent a9411f1 commit 9897282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/SDKs/CustomScenario/ScenarioMethodNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public partial class ScenarioMethodNode : ObservableRecipient
[ObservableProperty] private ObservableCollection<ConnectorItem> input = new();
[ObservableProperty] private ObservableCollection<ConnectorItem> output = new();
[ObservableProperty] private S节点状态 status = S节点状态.未验证;
[ObservableProperty] private TimeSpan _invokeTime = TimeSpan.Zero;
[JsonIgnore][property:JsonIgnore][ObservableProperty] private TimeSpan _invokeTime = TimeSpan.Zero;
[JsonConverter(typeof(ScenarioMethodJsonCtr))]
public ScenarioMethod ScenarioMethod { get; set; }

Expand Down

0 comments on commit 9897282

Please sign in to comment.