1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| using System.ComponentModel.DataAnnotations;
|
| namespace HStation.Revit
| {
| /// <summary>
| /// 属性状态
| /// </summary>
| public enum ePropStatus
| {
| /// <summary>
| /// 错误
| /// </summary>
| [Display(Name = "错误")]
| Error = -1,
|
| /// <summary>
| /// 正常
| /// </summary>
| [Display(Name = "正常")]
| Normal = 0,
|
| /// <summary>
| /// 缺省
| /// </summary>
| [Display(Name = "缺省")]
| Lack = 1,
|
| /// <summary>
| /// 异常
| /// </summary>
| [Display(Name = "异常")]
| Abnormal = 2
| }
| }
|
|