NGBox.cs
636 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnlineStore.DeviceLibrary
{
internal class NGBox
{
private int trayCnt = 0;
private string checkTray = "";
/// <summary>
/// NG箱
/// </summary>
/// <param name="checkTray">料盘检测信号</param>
public NGBox(string checkTray)
{
this.checkTray = checkTray;
}
/// <summary>
/// 料盘数量
/// </summary>
public int TrayCnt { get => trayCnt; set => trayCnt = value; }
}
}