using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HStation.ReportFile
{
///
/// 报告基本信息
///
public class SimulationReportInfoItemViewModel
{
///
/// 名称
///
public string Name { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}