15 lines
445 B
C#
15 lines
445 B
C#
using Prism.Events;
|
|
using XP.Hardware.Detector.Abstractions;
|
|
|
|
namespace XP.Hardware.Detector.Abstractions.Events
|
|
{
|
|
/// <summary>
|
|
/// 校正完成事件 | Correction completed event
|
|
/// 当探测器校正操作完成时触发
|
|
/// 线程安全:使用 Prism EventAggregator 确保线程安全的发布和订阅
|
|
/// </summary>
|
|
public class CorrectionCompletedEvent : PubSubEvent<CorrectionCompletedEventArgs>
|
|
{
|
|
}
|
|
}
|