Files
Shi.Ji e31d3560bb 添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
2026-05-18 11:43:09 +08:00

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;
}
}
}