using System; using System.Collections.Generic; using System.Text; using Mesnac.PlugIn.View; namespace Mesnac.Gui.PlugIn { /// /// 插件描述器类 /// public class PlugInDescriptor { private string _functionName; private List _viewContents; /// /// 功能名称 /// public string FunctionName { get { return _functionName; } set { _functionName = value; } } /// /// 操作窗口列表 /// public List ViewContents { get { return _viewContents; } set { _viewContents = value; } } } }