duheng
2024-10-23 b9583c5c06b2b188940caa606a6ba04722bdb721
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
29
30
31
32
33
34
35
36
namespace HStation.WinFrmUI
{
    public class XhsProjectSimulationAnalysisViewModel
    {
        public XhsProjectSimulationAnalysisViewModel()
        { }
 
        public XhsProjectSimulationAnalysisViewModel(XhsProjectSimulationAnalysisViewModel rhs)
        {
            this.Name = rhs.Name;
            this.Description = rhs.Description;
            this.Code = rhs.Code;
            this.Type = rhs.Type;
        }
 
        //名称
        [DisplayName("名称")]
        [Browsable(true)]
        public string Name { get; set; }
 
        //错误信息
        [DisplayName("错误信息")]
        [Browsable(true)]
        public string Description { get; set; }
 
        //构建编码
        [DisplayName("构建编码")]
        [Browsable(true)]
        public string Code { get; set; }
 
        //构建属性
        [DisplayName("构建属性")]
        [Browsable(true)]
        public string Type { get; set; }
    }
}