Files
DMS/DMS.Application/Events/VariableTableChangedEventArgs.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2025-09-16 14:42:23 +08:00
using DMS.Application.DTOs;
2025-09-16 12:29:09 +08:00
using DMS.Core.Enums;
2025-09-02 21:06:39 +08:00
2025-09-16 14:42:23 +08:00
namespace DMS.Application.Events
2025-09-02 21:06:39 +08:00
{
/// <summary>
/// 变量表变更事件参数
/// </summary>
public class VariableTableChangedEventArgs : System.EventArgs
{
/// <summary>
/// 变更类型
/// </summary>
public DataChangeType ChangeType { get; }
/// <summary>
2025-09-02 21:50:27 +08:00
/// 变量表DTO
2025-09-02 21:06:39 +08:00
/// </summary>
2025-09-02 21:50:27 +08:00
public VariableTableDto VariableTable { get; }
2025-09-02 21:06:39 +08:00
/// <summary>
2025-09-02 21:50:27 +08:00
/// 关联的设备DTO
2025-09-02 21:06:39 +08:00
/// </summary>
2025-09-02 21:50:27 +08:00
public DeviceDto Device { get; }
2025-09-02 21:06:39 +08:00
/// <summary>
/// 变更时间
/// </summary>
public DateTime ChangeTime { get; }
/// <summary>
/// 构造函数
/// </summary>
/// <param name="changeType">变更类型</param>
2025-09-02 21:50:27 +08:00
/// <param name="variableTable">变量表DTO</param>
/// <param name="device">关联的设备DTO</param>
public VariableTableChangedEventArgs(DataChangeType changeType, VariableTableDto variableTable, DeviceDto device)
2025-09-02 21:06:39 +08:00
{
ChangeType = changeType;
2025-09-02 21:50:27 +08:00
VariableTable = variableTable;
Device = device;
2025-09-02 21:06:39 +08:00
ChangeTime = DateTime.Now;
}
}
}