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; } /// /// 错误等级 /// [DisplayName("错误等级")] [Browsable(false)] public string ErrorLevel { get; set; } } }