1234567891011121314151617181920212223242526272829303132333435363738 |
- 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
- {
-
-
-
- public string PermittedWaferSizeInMM { get; set; }
-
-
-
- public int MetalID { get; set; }
-
-
-
- public string LinmotID { get; set; }
-
-
-
- public string PlatingPowerSupplyAID { get; set; }
-
-
-
- public string PlatingPowerSupplyBID { get; set; }
-
-
-
- public bool DepPump { get; set; }
- }
- }
|