From 3b3967d9d1106c1df0d975eb1c2e47170746528c Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Mon, 2 Sep 2019 14:46:14 +0300 Subject: Implemented hardware versions comparison tool. --- .../Report/ReportModel.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report/ReportModel.cs (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report/ReportModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report/ReportModel.cs new file mode 100644 index 000000000..8f644ceee --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report/ReportModel.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.HardwareDesigner.Report +{ + public class ReportModel + { + public String Collection { get; set; } + public String Component { get; set; } + public String Property { get; set; } + public String HW_1 { get; set; } + public String HW_2 { get; set; } + } +} -- cgit v1.3.1