Files
2025-02-28 22:23:13 +08:00

47 lines
1.1 KiB
C#

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