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.
lj_plc/Controls/Mesnac.Controls.Base/IPurviewControl.cs

19 lines
321 B
C#

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