using System; namespace MainShell.Process { public class WaferRecognitionSnapshot { public WaferRecognitionSnapshot() { RowsReal = Array.Empty(); ColumnsReal = Array.Empty(); Angles = Array.Empty(); OverlapRows = Array.Empty(); OverlapColumns = Array.Empty(); OverlapAngles = Array.Empty(); } public double[] RowsReal { get; set; } public double[] ColumnsReal { get; set; } public double[] Angles { get; set; } public double[] OverlapRows { get; set; } public double[] OverlapColumns { get; set; } public double[] OverlapAngles { get; set; } public int TotalFrameCount { get; set; } public int SuccessFrameCount { get; set; } public int FailedFrameCount { get; set; } public int LostFrameCount { get; set; } } }