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
| namespace HStation.Model
| {
| /// <summary>
| ///
| /// </summary>
| public class RevitBoundingBox
| {
| /// <summary>
| ///
| /// </summary>
| [JsonProperty("Min", NullValueHandling = NullValueHandling.Ignore)]
| public RevitPosition Min { get; set; }
|
| /// <summary>
| ///
| /// </summary>
| [JsonProperty("Max", NullValueHandling = NullValueHandling.Ignore)]
| public RevitPosition Max { get; set; }
|
| /// <summary>
| ///
| /// </summary>
| [JsonProperty("Center", NullValueHandling = NullValueHandling.Ignore)]
| public RevitPosition Center { get; set; }
|
|
| }
| }
|
|