namespace Yw.WinFrmUI
{
///
/// 用于标识水力模式属性特性
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class IsHydroPatternProAttribute : Attribute
{
///
///
///
public IsHydroPatternProAttribute(string patternType)
{
this.PatternType = patternType;
}
public string PatternType { get; private set; }
}
}