Files
OpenAuth.Net/OpenAuth.Domain/Utility/BusinessRule.cs
yubaolee b4fc05a823 主页加载菜单按钮
重新修改了登陆逻辑
2015-05-22 17:45:18 +08:00

28 lines
543 B
C#

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