namespace Yw.WinFrmUI
{
///
///
///
public class HydroCouplingBulkSetViewModel : HydroJunctionBulkSetViewModel
{
///
///
///
public HydroCouplingBulkSetViewModel() { }
///
///
///
public HydroCouplingBulkSetViewModel(Yw.Model.HydroCouplingInfo rhs) : base(rhs)
{
this.Material = rhs.Material;
this.Caliber = rhs.Caliber;
this.Vmo = rhs;
}
///
/// 材质
///
[DisplayName("材质")]
public string Material { get; set; }
///
/// 口径(mm)
///
[DisplayName("口径(mm)")]
public double? Caliber { get; set; }
///
/// Vmo
///
[Browsable(false)]
public new Yw.Model.HydroCouplingInfo Vmo { get; set; }
}
}