using DMS.Application.DTOs;
using DMS.Core.Enums;
namespace DMS.Application.Events
{
///
/// 批量导入变量事件参数
///
public class BatchImportVariablesEventArgs : System.EventArgs
{
///
/// 导入的变量列表
///
public List Variables { get; }
///
/// 导入的变量数量
///
public int Count { get; }
///
/// 变更时间
///
public DateTime ChangeTime { get; }
///
/// 构造函数
///
/// 导入的变量列表
public BatchImportVariablesEventArgs(List variables)
{
Variables = variables ?? new List();
Count = Variables.Count;
ChangeTime = DateTime.Now;
}
}
}