You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
561 B
27 lines
561 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QMAPP.WinForm.Common
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 窗体权限
|
||
|
/// </summary>
|
||
|
public class FormAuthority
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 窗体
|
||
|
/// </summary>
|
||
|
public string Form { get; set; }
|
||
|
/// <summary>
|
||
|
/// 按钮
|
||
|
/// </summary>
|
||
|
public string Button { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否拥有权限
|
||
|
/// </summary>
|
||
|
public bool HasAuthority { get; set; }
|
||
|
}
|
||
|
}
|