diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-19 14:05:34 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-09-19 14:05:34 +0300 |
| commit | 48c5d636927f832497e8939a8423ecd1c16892d7 (patch) | |
| tree | 2eac011bc0aca659131992408d8d9abd61494ed5 /Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs | |
| parent | 1c64e05e5eb5fabe1548c124cbfb8aaab2d1c401 (diff) | |
| download | Tango-48c5d636927f832497e8939a8423ecd1c16892d7.tar.gz Tango-48c5d636927f832497e8939a8423ecd1c16892d7.zip | |
Implemented hardware parameter description and range through DB and observables generator.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs | 15 |
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; } + } +} |
