diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-21 23:17:25 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-21 23:17:25 +0200 |
| commit | cd670d0404673efd095ae2baec1873b916c49c81 (patch) | |
| tree | 2b058baa663372411956ece0c6cfdae8c1382742 /Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs | |
| parent | aeb55d27a8abf291913724fc1676ecbf27cb2c1a (diff) | |
| download | Tango-cd670d0404673efd095ae2baec1873b916c49c81.tar.gz Tango-cd670d0404673efd095ae2baec1873b916c49c81.zip | |
Implemented not existing deleted RML check for PPC update and error message.
Added proper notification when trying to remove used RML onMS.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs index a857a20a1..2fb33ebdc 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs @@ -16,10 +16,12 @@ namespace Tango.PPC.Common.Web public bool SetupFirmware { get; set; } public bool SetupFPGA { get; set; } public UpdateDBResponse UpdateDBResponse { get; set; } + public List<String> UsedNotExistingRmlsGuids { get; set; } public CheckForUpdateResponse() { UpdateDBResponse = new UpdateDBResponse(); + UsedNotExistingRmlsGuids = new List<string>(); } } } |
