using Prism.Mvvm;
namespace TeamAAS_VP.Models.Product
{
public class ProductGlobalParamEx : BindableBase
{
private float _CC1UpLimit = 0;
///
/// CC1上限
///
public float CC1UpLimit
{
get { return _CC1UpLimit; }
set { SetProperty(ref _CC1UpLimit, value); }
}
private float _CC1DownLimit = 0;
///
/// CC1下限
///
public float CC1DownLimit
{
get { return _CC1DownLimit; }
set { SetProperty(ref _CC1DownLimit, value); }
}
private float _CC2UpLimit = 0;
///
/// CC2上限
///
public float CC2UpLimit
{
get { return _CC2UpLimit; }
set { SetProperty(ref _CC2UpLimit, value); }
}
private float _CC2DownLimit = 0;
///
/// CC2下限
///
public float CC2DownLimit
{
get { return _CC2DownLimit; }
set { SetProperty(ref _CC2DownLimit, value); }
}
}
}