using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.ToolLayout
{
public class TransporterItem : LayoutModuleItem
{
///
/// Transporter ID
///
public int TransporterID { get; set; }
///
/// Drip Tray Type
///
public string DripTrayType { get; set; }
///
/// Drop BlockType
///
public string DropBlockType { get; set; }
///
/// BarcodeReader
///
public string BarcodeReader { get; set; }
}
}