using Prism.Mvvm;
namespace CapMachine.Wpf.Dtos
{
///
/// Tab设置的Dto模型
///
public class ChartTabGroupDto:BindableBase
{
private int _Index;
///
/// 序号
///
public int Index
{
get { return _Index; }
set { _Index = value; RaisePropertyChanged(); }
}
private string _Machine;
///
/// 机器名称
///
public string Machine
{
get { return _Machine; }
set { _Machine = value; RaisePropertyChanged(); }
}
private string _Name;
///
/// 名称
///
public string Name
{
get { return _Name; }
set { _Name = value; RaisePropertyChanged(); }
}
private bool _IsEnable;
///
/// 是否被启用
///
public bool IsEnable
{
get { return _IsEnable; }
set { _IsEnable = value; RaisePropertyChanged(); }
}
}
}