37 lines
954 B
C#
37 lines
954 B
C#
|
|
using MwFramework.ManagerService;
|
|||
|
|
using Stylet;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MainShell.Recipe.Models
|
|||
|
|
{
|
|||
|
|
public class LogisticsParameterItem : PropertyChangedBase, IParameterItem
|
|||
|
|
{
|
|||
|
|
private double _cv1Width;
|
|||
|
|
public double CV1Width
|
|||
|
|
{
|
|||
|
|
get { return _cv1Width; }
|
|||
|
|
set { SetAndNotify(ref _cv1Width, value); }
|
|||
|
|
}
|
|||
|
|
private double _cv2Width;
|
|||
|
|
public double CV2Width
|
|||
|
|
{
|
|||
|
|
get { return _cv2Width; }
|
|||
|
|
set { SetAndNotify(ref _cv2Width, value); }
|
|||
|
|
}
|
|||
|
|
private double _cv3Width;
|
|||
|
|
public double CV3Width
|
|||
|
|
{
|
|||
|
|
get { return _cv3Width; }
|
|||
|
|
set { SetAndNotify(ref _cv3Width, value); }
|
|||
|
|
}
|
|||
|
|
public IParameterItem Clone()
|
|||
|
|
{
|
|||
|
|
return this.MemberwiseClone() as IParameterItem;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|