diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-09-02 14:46:14 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-09-02 14:46:14 +0300 |
| commit | 3b3967d9d1106c1df0d975eb1c2e47170746528c (patch) | |
| tree | 3abf0a25dcea43aa340cb988846e9bd9dffcc83c /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report | |
| parent | 8b952ce1a4d38255b19a4346534dd6e7b1ab7824 (diff) | |
| download | Tango-3b3967d9d1106c1df0d975eb1c2e47170746528c.tar.gz Tango-3b3967d9d1106c1df0d975eb1c2e47170746528c.zip | |
Implemented hardware versions comparison tool.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/Report/ReportModel.cs | 17 |
1 files changed, 17 insertions, 0 deletions
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; } + } +} |
