aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-09-23 12:58:19 +0300
committerShlomo Hecht <shlomo@twine-s.com>2019-09-23 12:58:19 +0300
commit90d225db29a76051c4e2a0c83f7967bb846b66a9 (patch)
treeeb04ef805ccb6469c31ade3eafc4d3f6f2708c14 /Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs
parent7d88aaa7f2b7f6a08245f1ce680e6955f18dd800 (diff)
parentd6974df76b1401f101ca3c7fc3182f73e493ca51 (diff)
downloadTango-90d225db29a76051c4e2a0c83f7967bb846b66a9.tar.gz
Tango-90d225db29a76051c4e2a0c83f7967bb846b66a9.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs')
-rw-r--r--Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs15
1 files changed, 15 insertions, 0 deletions
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; }
+ }
+}