1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using System;
| using System.Collections.Generic;
| using System.ComponentModel.DataAnnotations;
| using System.Linq;
| using System.Text;
|
| namespace IStation.Model.Bimface
| {
| /// <summary>
| /// Bimface背景显示颜色
| /// </summary>
| public class BackgroundDisplayColor
| {
| /// <summary>
| /// 颜色1(默认)
| /// </summary>
| public DisplayColor DisplayColor1 { get; set; }
| /// <summary>
| /// 颜色2(渐变)
| /// </summary>
| public DisplayColor DisplayColor2 { get; set; }
|
| }
| }
|
|