Files

15 lines
301 B
C#
Raw Permalink Normal View History

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