namespace QMAPP.Common.Web { /// /// 行为权限 /// public class ControllerActionLimit { private string Controller = string.Empty; private string Action = string.Empty; public ControllerActionLimit(string pController, string pAction) { Controller = pController; Action = pAction; } } }