using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.WinForm.Common
{
///
/// 窗体权限
///
public class FormAuthority
{
///
/// 窗体
///
public string Form { get; set; }
///
/// 按钮
///
public string Button { get; set; }
///
/// 是否拥有权限
///
public bool HasAuthority { get; set; }
}
}