diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-05-12 15:20:57 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-05-12 15:20:57 +0300 |
| commit | 5c1649221047dd4fe3d8de124f21a878a3e4b555 (patch) | |
| tree | b55bf8dd4d1a000162313224aa787ca253559bdd /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs | |
| parent | 896c8152facdee8e78f54d3dfdf324e7415173ba (diff) | |
| download | Tango-5c1649221047dd4fe3d8de124f21a878a3e4b555.tar.gz Tango-5c1649221047dd4fe3d8de124f21a878a3e4b555.zip | |
RML module and Machine designer lists performance improvements !
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.cs | 34 |
1 files changed, 34 insertions, 0 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 new file mode 100644 index 000000000..b1be35a38 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/RmlModel.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; +using Tango.BL.Enumerations; +using Tango.Core; + +namespace Tango.MachineStudio.RML.Models +{ + public class RmlModel : ExtendedObject + { + public String Guid { get; set; } + + public String Name { get; set; } + + public String DisplayName { get; set; } + + public String CCT { get; set; } + + public bool UseGradients { get; set; } + + public bool UseLightInks { get; set; } + + public HeadTypes HeadType { get; set; } + + public String Btsr { get; set; } + + public DateTime LastUpdated { get; set; } + + public List<int> LiquidTypes { get; set; } + } +} |
