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; } /// /// Cell Id /// public int CellID { get; set; } /// /// 类型 /// public string CellType { get; set; } /// /// 名义上水平位置 /// public int NominalGantryPositionInMilliMeters { get; set; } } }