主页加载菜单按钮

重新修改了登陆逻辑
This commit is contained in:
yubaolee
2015-05-22 17:45:18 +08:00
parent 91384a5447
commit b4fc05a823
36 changed files with 613 additions and 513 deletions

View File

@@ -0,0 +1,27 @@
namespace OpenAuth.Domain.Utility
{
public class BusinessRule
{
private string _property;
private string _rule;
public BusinessRule(string property, string rule)
{
this._property = property;
this._rule = rule;
}
public string Property
{
get { return _property; }
set { _property = value; }
}
public string Rule
{
get { return _rule; }
set { _rule = value; }
}
}
}