aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-11-28 16:12:39 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-11-28 16:12:39 +0200
commit242cb9fd566647406792d63547b61ec1d6a5f3bc (patch)
tree312bf250e054cb6b2a4edee0dfaa306ebf50c657 /Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs
parentcc407822ab637108a1b7868c3dd6f2f27b2ee5f8 (diff)
downloadTango-242cb9fd566647406792d63547b61ec1d6a5f3bc.tar.gz
Tango-242cb9fd566647406792d63547b61ec1d6a5f3bc.zip
Added PPC pending updates...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs
new file mode 100644
index 000000000..63cfed824
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineUpdateCompletedRequest.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Enumerations;
+using Tango.Transport.Web;
+
+namespace Tango.PPC.Common.Web
+{
+ public class MachineUpdateCompletedRequest : WebRequestMessage
+ {
+ public String Token { get; set; }
+ public TangoUpdateStatuses Status { get; set; }
+ public String FailedReason { get; set; }
+ public String FailedLog { get; set; }
+ }
+}