using Prism.Mvvm;
namespace CapMachine.Wpf.Models
{
///
/// 曲线数据源信息
///
public class ChartSrcData:BindableBase
{
///
/// 序号
///
public int Index { get; set; }
///
/// 名称
///
public string? Name { get; set; }
private bool _Selected;
///
/// 选中
///
public bool Selected
{
get { return _Selected; }
set { _Selected = value; RaisePropertyChanged(); }
}
/////
///// 选中
/////
//public bool? Selected { get; set; }
}
}