lixiaojun
2024-11-06 278e94cb1b045288d1205f36b67f60cb5224754c
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 Yw.WinFrmUI
{
    /// <summary>
    /// 过渡件视图
    /// </summary>
    public class HydroTranslationViewModel : HydroPipeViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroTranslationViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroTranslationViewModel(Yw.Model.HydroTranslationInfo rhs, Yw.Model.HydroModelInfo hydroInfo) : base(rhs, hydroInfo)
        {
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 
        /// </summary>
        [Browsable(false)]
        public new Yw.Model.HydroTranslationInfo Vmo { get; set; }
 
    }
}