using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.ToolLayout
{
public class MetalItem : LayoutCellItem
{
///
/// 允许Wafer尺寸
///
public string PermittedWaferSizeInMM { get; set; }
///
/// Metal ID
///
public int MetalID { get; set; }
///
/// Linmot ID
///
public string LinmotID { get; set; }
///
/// Power Supply A ID
///
public string PlatingPowerSupplyAID { get; set; }
///
/// Power Supply B ID
///
public string PlatingPowerSupplyBID { get; set; }
}
}