17 lines
400 B
17 lines
400 B
4 years ago
|
namespace QMAPP.Common.Web
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 行为权限
|
||
|
/// </summary>
|
||
|
public class ControllerActionLimit
|
||
|
{
|
||
|
private string Controller = string.Empty;
|
||
|
private string Action = string.Empty;
|
||
|
|
||
|
public ControllerActionLimit(string pController, string pAction)
|
||
|
{
|
||
|
Controller = pController;
|
||
|
Action = pAction;
|
||
|
}
|
||
|
}
|
||
|
}
|