namespace Yw.WinFrmUI
{
///
/// 用于标识水力曲线属性特性
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class HydroCurveProAttribute : Attribute
{
///
///
///
public HydroCurveProAttribute(string curveType)
{
this.CurveType = curveType;
}
public string CurveType { get; private set; }
}
}