using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Models { /// /// 液冷分析 /// public class CoolAnalyse : BindableBase { private int _DayActionCount; /// /// 液冷 今日动作次数 /// public int DayActionCount { get { return _DayActionCount; } set { _DayActionCount = value; RaisePropertyChanged(); } } private double _DayRunTime; /// /// 液冷 今日运行时长 分钟 /// public double DayRunTime { get { return _DayRunTime; } set { _DayRunTime = value; RaisePropertyChanged(); } } private double _DayPw; /// /// 液冷 今日耗电量 kWh /// public double DayPw { get { return _DayPw; } set { _DayPw = value; RaisePropertyChanged(); } } } }