44 lines
994 B
C#
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); }
|
|
}
|
|
|
|
}
|
|
}
|