aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-17 00:02:49 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-17 00:02:49 +0200
commitbdf56799cd6c4c42ec7a8dc36f56ddd17a5feeab (patch)
tree00ff21d8d2ee3d81b76fa12bc92460117cc693be /Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs
parente8ee7dfb8e166e34c7950e90d5fe9bcf31dc351b (diff)
downloadTango-bdf56799cd6c4c42ec7a8dc36f56ddd17a5feeab.tar.gz
Tango-bdf56799cd6c4c42ec7a8dc36f56ddd17a5feeab.zip
Added SOURCE to JOB.
Added IS_SYNCHRONIZED to TANGO_UPDATE. Added OfflineUpdates to Synchronization. Added TangoUpdates on PPC side.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs
index e4dda4013..0119c07b6 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataResponse.cs
@@ -14,6 +14,7 @@ namespace Tango.PPC.Common.Web
public List<SynchronizationFailedEntity> FailedJobs { get; set; }
public List<SynchronizationFailedEntity> FailedJobRuns { get; set; }
public List<SynchronizationFailedEntity> FailedMachineEvents { get; set; }
+ public List<SynchronizationFailedEntity> FailedOfflineUpdates { get; set; }
public String NotifyCompletedToken { get; set; }
public UploadMachineDataResponse()
@@ -21,6 +22,7 @@ namespace Tango.PPC.Common.Web
FailedJobs = new List<SynchronizationFailedEntity>();
FailedJobRuns = new List<SynchronizationFailedEntity>();
FailedMachineEvents = new List<SynchronizationFailedEntity>();
+ FailedOfflineUpdates = new List<SynchronizationFailedEntity>();
}
}
}