添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
using Stylet;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MainShell.Recipe.Models.SubstrateParameter
|
||||
{
|
||||
public class WaferSelectInfo : PropertyChangedBase
|
||||
{
|
||||
private string _waferRecipeName;
|
||||
|
||||
public string WaferRecipeName
|
||||
{
|
||||
get { return _waferRecipeName; }
|
||||
set { SetAndNotify(ref _waferRecipeName, value); }
|
||||
}
|
||||
private double _offsetX;
|
||||
|
||||
public double OffsetX
|
||||
{
|
||||
get { return _offsetX; }
|
||||
set { SetAndNotify(ref _offsetX, value); }
|
||||
}
|
||||
private double _offsetY;
|
||||
|
||||
public double OffsetY
|
||||
{
|
||||
get { return _offsetY; }
|
||||
set { SetAndNotify(ref _offsetY, value); }
|
||||
}
|
||||
|
||||
private bool _isUse;
|
||||
|
||||
public bool IsUse
|
||||
{
|
||||
get { return _isUse; }
|
||||
set { SetAndNotify(ref _isUse, value); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user