1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using HStation.RevitDev.Model.AttributeClass;
| namespace HStation.Model
| {
| /// <summary>
| /// 水库
| /// </summary>
| public interface IRevitReservoir : IRevitNode
| {
| /// <summary>
| /// 总水头
| /// </summary>
| [Parameter("总水头")]
| double Head { get; set; }
|
| /// <summary>
| /// 模式
| /// </summary>
| [Parameter("模式")]
| string Pattern { get; set; }
| }
| }
|
|