1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.ToolLayout
- {
- public class DummyCassetteItem
- {
-
-
-
- public bool Installed { get; set; }
-
-
-
- public string PermittedWaferSizeInMM { get; set; }
-
-
-
- public string ResourceID { get; set; }
-
-
-
- public string Type { get; set; }
-
-
-
- public int DummyCassetteID { get; set; }
-
-
-
- public int MaxNumberOfSlots { get; set;}
- }
- }
|