aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs
deleted file mode 100644
index d264739d7..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Updates/GetUpdatesAndPackagesResponse.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL.DTO;
-
-namespace Tango.PPC.Shared.Updates
-{
- public class GetUpdatesAndPackagesResponse
- {
- public List<TangoUpdateDTO> Updates { get; set; }
-
- public List<PackageInstallation> Packages { get; set; }
-
- public GetUpdatesAndPackagesResponse()
- {
- Updates = new List<TangoUpdateDTO>();
- Packages = new List<PackageInstallation>();
- }
- }
-}