lixiaojun
2024-09-27 28152aec3c4ff451586615aed5cc23e26b320cae
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
namespace HStation.Service
{
    /// <summary>
    /// 
    /// </summary>
    internal class RevitJsonConnectModel
    {
        /// <summary>
        /// 连接id
        /// </summary>
        public string ConnectId { get; set; }
 
        /// <summary>
        /// 方向
        /// </summary>
        public int Dirction { get; set; }
 
        /// <summary>
        /// 点
        /// </summary>
        public RevitJsonPointModel Point { get; set; }
 
 
 
 
    }
}