using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.ToolLayout
{
    public class VpwMainItem : LayoutModuleItem
    {
        /// 
        /// VpwMain ID
        /// 
        public int VpwMainID { get; set; }
        /// 
        /// cell 数量
        /// 
        public int Size { get; set; }
        /// 
        /// Metal集合
        /// 
        public List VpwCells { get; set; }
    }
}