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; }
|
| }
|
| }
|
|