duheng
2024-12-23 9576b66b52fa7c9985489c950a3b726671d5fd1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.ReportFile
{
    /// <summary>
    /// 报告基本信息
    /// </summary>
    public class SimulationReportInfoItemViewModel
    {
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
    }
}