wcs_serve_wuxikate/Tools/DataCheck/DataRulesAttribute.cs

18 lines
441 B
C#
Raw Normal View History

2025-01-03 14:36:27 +08:00
namespace DataCheck;
/// <summary>
/// 数据校验规则
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class DataRulesAttribute(bool allowNull = false, string regexRule = ".*") : Attribute
{
/// <summary>
/// 是否允许空值
/// </summary>
public readonly bool AllowNull = allowNull;
/// <summary>
/// 正则表达式
/// </summary>
public readonly string RegexRule = regexRule;
}