diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-12-28 04:00:29 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-12-28 04:00:29 +0200 |
| commit | 29241b674e6e747ce64e521446e87596eb66dedd (patch) | |
| tree | 5169b73b62cff50146ca3f110818787b48bcd387 /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | |
| parent | 1cb99b7e98491a9064eb4c87b89991b5301528c1 (diff) | |
| download | Tango-29241b674e6e747ce64e521446e87596eb66dedd.tar.gz Tango-29241b674e6e747ce64e521446e87596eb66dedd.zip | |
Implemented lubrication level control per RML for PPC user.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs index aacbe8901..112708ca0 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs @@ -9,6 +9,7 @@ using Tango.Integration.Operation; using Tango.Logging; using Tango.PMR.Integration; using Tango.PMR.Printing; +using Tango.PPC.Common.Lubrication; using Tango.Settings; using Tango.Transport.Adapters; using Tango.Web; @@ -288,6 +289,11 @@ namespace Tango.PPC.Common public String LastDatabaseBackupFile { get; set; } /// <summary> + /// Gets or sets the RMLs lubrication levels. + /// </summary> + public List<RmlLubricationLevel> LubricationLevels { get; set; } + + /// <summary> /// Gets the machine service address. /// </summary> /// <returns></returns> @@ -301,6 +307,7 @@ namespace Tango.PPC.Common /// </summary> public PPCSettings() { + LubricationLevels = new List<RmlLubricationLevel>(); JobUploadStrategy = JobUploadStrategy.JobDescriptionFile; EnableGradientGeneration = true; GradientGenerationResolution = 20; |
