using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.ToolLayout
{
public class LayoutModuleItem
{
///
/// 是否安装
///
public bool Installed { get; set; }
///
/// 子类型
///
public string SubType { get; set; }
}
}