yangyin
2024-08-20 98e49c0dd42840a094837f7acae532bc237a719a
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_HydroL2d_Pipe
    {
        /// <summary>
        /// 线
        /// </summary>
        public Paras_HydroL2d_Line Line { get; set; }
 
        /// <summary>
        /// 悬停线
        /// </summary>
        public Paras_HydroL2d_Line HoveredLine { get; set; }
 
        /// <summary>
        /// 选择线
        /// </summary>
        public Paras_HydroL2d_Line SelectedLine { get; set; }
 
 
    }
 
}