mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
主页加载菜单按钮
重新修改了登陆逻辑
This commit is contained in:
27
OpenAuth.Domain/Utility/BusinessRule.cs
Normal file
27
OpenAuth.Domain/Utility/BusinessRule.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user