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