15 lines
301 B
C#
15 lines
301 B
C#
|
|
using System.Windows;
|
||
|
|
|
||
|
|
namespace MainShell.Process
|
||
|
|
{
|
||
|
|
public class WaferPlannerPointAdjustment
|
||
|
|
{
|
||
|
|
public Point OriginalPoint { get; set; }
|
||
|
|
|
||
|
|
public Point AdjustedPoint { get; set; }
|
||
|
|
|
||
|
|
public bool WasAdjusted { get; set; }
|
||
|
|
|
||
|
|
public string Reason { get; set; }
|
||
|
|
}
|
||
|
|
}
|