| 1234567891011121314151617181920 | using MECF.Framework.Common.ToolLayout;using System;using System.Collections.Generic;using System.Linq;using System.Management.Instrumentation;using System.Runtime.Serialization;using System.Text;using System.Threading.Tasks;using System.Xml.Schema;using System.Xml.Serialization;namespace MECF.Framework.Common.Layout{    public class ProcessLayout    {        [XmlElement(Type = typeof(ProcessLayoutCellItem), ElementName = "Item", IsNullable = false, Form = XmlSchemaForm.Qualified)]        public List<ProcessLayoutCellItem> Items { get; set; }    }}
 |