using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.ReportFile { /// /// /// public class SimulationReportWorkingItemViewModel { /// /// 名称 /// public string Name { get; set; } /// /// 能耗分析图片路径 /// public string EnergyAnalyImagePath { get; set; } /// /// 损失曲线图片路径 /// public string LossCurveImagePath { get; set; } /// /// 能量输入图片路径 /// public string EnergyInputImagePath { get; set; } /// /// 能量损失图片路径 /// public string EnergyLossImagePath { get; set; } /// /// 能量统计图片路径 /// public string EnergyStatisticsImagePath { get; set; } } }