mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-19 18:22:11 +08:00
28 lines
543 B
C#
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; }
|
|
}
|
|
}
|
|
|
|
}
|