using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IBox.WinFrmUI { public class PumpEnergyViewModel { public string Day { get; set; } public decimal Supply { get; set; } public decimal Electricity { get; set; } public decimal EnergyOfWater { get; set; } } }