namespace HStation.WinFrmUI.PhartRelation
{
public class PumpPointItmeViewModel
{
public PumpPointItmeViewModel() { }
public PumpPointItmeViewModel(PumpPointItmeViewModel rhs)
{
this.Group = rhs.Group;
this.Name = rhs.Name;
this.Value = rhs.Value;
this.Unit = rhs.Unit;
}
///
/// 组
///
public string Group { get; set; }
///
///
///
public string Name { get; set; }
///
///
///
public string Value { get; set; }
///
///
///
public string Unit { get; set; }
}
}