lixiaojun
2024-10-10 3379b93327c6c7a9f9bc30d4462ffbeb6d4a4470
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 用于标识水力曲线属性特性
    /// </summary>
    [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
    public class IsHydroCurveProAttribute : Attribute
    {
        /// <summary>
        /// 
        /// </summary>
        public IsHydroCurveProAttribute(string curveType)
        {
            this.CurveType = curveType;
        }
 
        public string CurveType { get; private set; }
 
    }
 
}