using HStation.Vmo; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { public class PumpAccountViewModel { public PumpAccountViewModel() { } public PumpAccountViewModel(Vmo.AssetsPackagePumpMappingVmo rhs) { this.ID = rhs.ID; this.PumpID = rhs.PumpMainID; } public PumpAccountViewModel(long PumpID, int Count) { this.PumpID = PumpID; this.UserCount = Count; } public long ID { get; set; } public long PumpID { get; set; } public int UserCount { get; set; } } }