diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-12-20 15:47:33 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-12-20 15:47:33 +0200 |
| commit | 5ab11fca7d8094678b1c675cf6a42011f7f2c3de (patch) | |
| tree | 9d1fc6c52f47d4d06421a31d22223640d34c3a42 /Software/Visual_Studio/Tango.BL/Enumerations | |
| parent | fd24c47e3c812d00e5d3889dd646ba9f3d834297 (diff) | |
| parent | ad251a8c9af9b1728cc53acfe672cee83949c71b (diff) | |
| download | Tango-5ab11fca7d8094678b1c675cf6a42011f7f2c3de.tar.gz Tango-5ab11fca7d8094678b1c675cf6a42011f7f2c3de.zip | |
Merged Thread Extensions Bugs branch.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Enumerations')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs new file mode 100644 index 000000000..73d468078 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Enumerations/InkUptakeZoneTypes.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.Enumerations +{ + public enum InkUptakeZoneTypes + { + [Description("Min ink uptake - Zone1")] + MININKUPTAKEZONE1 = 0, + [Description("Max ink uptake - Zone1")] + MAXINKUPTAKEZONE1 = 1, + [Description("Min ink uptake - Zone2")] + MININKUPTAKEZONE2 = 2, + [Description("Max ink uptake - Zone2")] + MAXINKUPTAKEZONE2 = 3, + } +} |
