完成S7变量启用和停用更新
This commit is contained in:
38
DMS.Application/Events/DeviceChangedEventArgs.cs
Normal file
38
DMS.Application/Events/DeviceChangedEventArgs.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using DMS.Application.DTOs;
|
||||
using DMS.Core.Enums;
|
||||
|
||||
namespace DMS.Application.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备变更事件参数
|
||||
/// </summary>
|
||||
public class DeviceChangedEventArgs : System.EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// 变更类型
|
||||
/// </summary>
|
||||
public DataChangeType ChangeType { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备DTO
|
||||
/// </summary>
|
||||
public DeviceDto Device { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 变更时间
|
||||
/// </summary>
|
||||
public DateTime ChangeTime { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 构造函数
|
||||
/// </summary>
|
||||
/// <param name="changeType">变更类型</param>
|
||||
/// <param name="device">设备DTO</param>
|
||||
public DeviceChangedEventArgs(DataChangeType changeType, DeviceDto device)
|
||||
{
|
||||
ChangeType = changeType;
|
||||
Device = device;
|
||||
ChangeTime = DateTime.Now;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user