aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2023-07-10 08:59:44 +0300
committerRoy <Roy.mail.net@gmail.com>2023-07-10 08:59:44 +0300
commit98998e64bd4bd1c7c516019eeb2649693eee175f (patch)
tree2b85378d410b244f4b4673ff5023d92b9f91213e /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs
parent29c5cb29d6653164328720f7b360f234d9b68a56 (diff)
parenta906e7316bc179888f475f6bcff5ddc20a501346 (diff)
downloadTango-98998e64bd4bd1c7c516019eeb2649693eee175f.tar.gz
Tango-98998e64bd4bd1c7c516019eeb2649693eee175f.zip
Merge branch 'eureka' of https://twinetfs.visualstudio.com/Tango/_git/Tango into eureka
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs23
1 files changed, 22 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs
index b1be35a38..dce3432e2 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs
@@ -11,10 +11,16 @@ namespace Tango.MachineStudio.RML.Models
{
public class RmlModel : ExtendedObject
{
+ public class LiquidTypeColorValue
+ {
+ public int Color { get; set; }
+
+ public double LiquidTypeValue { get; set; }
+ }
public String Guid { get; set; }
public String Name { get; set; }
-
+
public String DisplayName { get; set; }
public String CCT { get; set; }
@@ -27,8 +33,23 @@ namespace Tango.MachineStudio.RML.Models
public String Btsr { get; set; }
+ public String DyeingSpeed { get; set; }
+
+ public String Zone1InkUptake { get; set; }
+
+ public String Zone2InkUptake { get; set; }
+
public DateTime LastUpdated { get; set; }
public List<int> LiquidTypes { get; set; }
+
+ public List<LiquidTypeColorValue> LiquidTypesR { get; set; }
+
+ public RmlModel()
+ {
+ DyeingSpeed = "-";
+ Zone1InkUptake = "-";
+ Zone2InkUptake = "-";
+ }
}
}