添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using MainShell.Models;
|
||||
using MwFramework.ManagerService;
|
||||
using Stylet;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MainShell.ParaSetting.Model
|
||||
{
|
||||
public class EquipmentPointSetting : ParameterBase
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class EquipmentPointItem : PropertyChangedBase, IParameterItem
|
||||
{
|
||||
private double _substrateLoadY1;
|
||||
|
||||
public double SubstrateLoadY1
|
||||
{
|
||||
get { return _substrateLoadY1; }
|
||||
set { SetAndNotify(ref _substrateLoadY1, value); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
public IParameterItem Clone()
|
||||
{
|
||||
return (IParameterItem)this.MemberwiseClone();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user