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 | |
| 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')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateRequest.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateResponse.cs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateRequest.cs index 3d606b918..0d86fa117 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateRequest.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/CheckForUpdateRequest.cs @@ -16,12 +16,14 @@ namespace Tango.PPC.Common.Web public List<UpdatedEntity> HardwareVersions { get; set; } public List<UpdatedEntity> Catalogs { get; set; } public DateTime MachineLastUpdated { get; set; } + public List<String> UsedRmlsGuids { get; set; } public CheckForUpdateRequest() { Rmls = new List<UpdatedEntity>(); HardwareVersions = new List<UpdatedEntity>(); Catalogs = new List<UpdatedEntity>(); + UsedRmlsGuids = new List<string>(); } } } 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>(); } } } |
