using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace XImagingXhandler.XDAL
|
{
|
/// <summary>
|
/// 多通道配置实体
|
/// </summary>
|
public class MultiChannel
|
{
|
/// <summary>
|
/// 取枪头的信息
|
/// </summary>
|
public List<TipsTable> Tips { get; set; }
|
|
/// <summary>
|
/// 操作来源板的信息
|
/// </summary>
|
public List<TipsTable> SrcPlateWells { get; set; }
|
|
/// <summary>
|
/// 操作目标板的信息
|
/// </summary>
|
public List<TipsTable> DesPlateWells { get; set; }
|
|
}
|
}
|