35 lines
720 B
C#
35 lines
720 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|