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

44 lines
994 B
C#

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