You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
767 B
C#
35 lines
767 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Mesnac.PlugIn.View;
|
|
|
|
namespace Mesnac.Gui.PlugIn
|
|
{
|
|
/// <summary>
|
|
/// 插件描述器类
|
|
/// </summary>
|
|
public class PlugInDescriptor
|
|
{
|
|
private string _functionName;
|
|
private List<IViewContent> _viewContents;
|
|
|
|
/// <summary>
|
|
/// 功能名称
|
|
/// </summary>
|
|
public string FunctionName
|
|
{
|
|
get { return _functionName; }
|
|
set { _functionName = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 操作窗口列表
|
|
/// </summary>
|
|
public List<IViewContent> ViewContents
|
|
{
|
|
get { return _viewContents; }
|
|
set { _viewContents = value; }
|
|
}
|
|
}
|
|
}
|