天津投入产出系统后端

17 lines
400 B

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;
}
}
}