初步添加事件服务

This commit is contained in:
2025-09-12 13:25:39 +08:00
parent 071347bc91
commit cb739f4cb9
11 changed files with 423 additions and 4 deletions

View File

@@ -1,3 +1,5 @@
using DMS.WPF.Interfaces;
namespace DMS.WPF.Interfaces;
/// <summary>
@@ -33,5 +35,10 @@ public interface IWPFDataService
/// 日志数据服务。
/// </summary>
ILogDataService LogDataService { get; }
/// <summary>
/// 事件服务。
/// </summary>
IEventService EventService { get; }
}