修改了加载触发器

This commit is contained in:
2025-09-23 05:48:21 +08:00
parent f61c505774
commit 87942a45c8
3 changed files with 33 additions and 1 deletions

View File

@@ -53,4 +53,9 @@ public class AppDataStorageService : IAppDataStorageService
/// 安全字典,用于存储所有日志数据
/// </summary>
public ConcurrentDictionary<int, NlogDto> Nlogs { get; } = new();
/// <summary>
/// 安全字典,用于存储所有触发器定义数据
/// </summary>
public ConcurrentDictionary<int, TriggerDefinitionDto> Triggers { get; } = new();
}