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.
|
|
|
|
|
|
|
|
|
namespace Mesnac.Controls.Base
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 控件权限接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IPurviewControl:IBaseControl
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否为权限控件
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool MCPurview
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|