duheng
2025-03-18 0dcff1805b3143dd1c2a25d604afdd724b452803
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
namespace Yw.Settings
{
    /// <summary>
    /// 管道
    /// </summary>
    public class Paras_HydroL3d_Pipe
    {
        /// <summary>
        /// 线
        /// </summary>
        public Paras_HydroL3d_Line Line { get; set; }
 
        /// <summary>
        /// 悬停线
        /// </summary>
        public Paras_HydroL3d_Line HoveredLine { get; set; }
 
        /// <summary>
        /// 选择线
        /// </summary>
        public Paras_HydroL3d_Line SelectedLine { get; set; }
 
 
    }
 
}