123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.ToolLayout
- {
- public class LayoutCellItem : LayoutModuleItem
- {
-
-
-
- public string ModuleName { get; set; }
-
-
-
- public string ModuleType { get; set; }
-
-
-
- public int CellID { get; set; }
-
-
-
- public string CellType { get; set; }
-
-
-
- public int NominalGantryPositionInMilliMeters { get; set; }
- }
- }
|