Shuxia Ning
2024-12-23 a97513ccbb97b2c471e90b032fabdd2e709b7f32
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
29
30
31
32
33
34
namespace Yw.WinFrmUI.HydroW3d
{
    /// <summary>
    /// 过渡件(变径管)
    /// </summary>
    public class TranslationViewModel : PipeViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public TranslationViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public TranslationViewModel(TranslationViewModel rhs) : base(rhs)
        {
            this.StartDiameter = rhs.StartDiameter;
            this.EndDiameter = rhs.EndDiameter;
        }
 
        /// <summary>
        /// 开始直径
        /// </summary>
        [JsonProperty("StartDiameter", NullValueHandling = NullValueHandling.Ignore)]
        public double StartDiameter { get; set; }
 
        /// <summary>
        /// 结束直径
        /// </summary>
        [JsonProperty("EndDiameter", NullValueHandling = NullValueHandling.Ignore)]
        public double EndDiameter { get; set; }
    }
}