using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GanttChart
{
///
/// 甘特图属性改变事件参数
///
public class GanttChartPropertyChangeEventArgs : EventArgs
{
///
/// 初始化
///
///
///
public GanttChartPropertyChangeEventArgs(string name, object value)
{
PropertyName = name;
PropertyValue = value;
}
///
/// 属性名
///
public string PropertyName { get; set; }
///
/// 属性值
///
public object PropertyValue { get; set; }
}
}