From 48c5d636927f832497e8939a8423ecd1c16892d7 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 19 Sep 2019 14:05:34 +0300 Subject: Implemented hardware parameter description and range through DB and observables generator. --- .../Tango.CodeGeneration/RangeDescriptionModel.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs b/Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs new file mode 100644 index 000000000..4600460b7 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class RangeDescriptionModel + { + public String Description { get; set; } + public double Min { get; set; } + public double Max { get; set; } + } +} -- cgit v1.3.1