Files

23 lines
453 B
C#
Raw Permalink Normal View History

using System.Windows;
namespace MainShell.Process
{
public class WaferScanArea
{
public Point StartPoint { get; set; }
public Point EndPoint { get; set; }
public double MinX { get; set; }
public double MaxX { get; set; }
public double MinY { get; set; }
public double MaxY { get; set; }
public double WaferWidth { get; set; }
public double WaferHeight { get; set; }
}
}