using System.Collections.Generic;
namespace MainShell.Vision
{
///
/// Die 定位结果集合。
///
public class FindDiesResult
{
public FindDiesResult()
{
Items = new List();
PixelItems = new List();
}
///
/// 实际坐标结果集合。
///
public IList Items { get; private set; }
///
/// 像素坐标结果集合。
///
public IList PixelItems { get; private set; }
}
}