blob: 24044e5673a0bb1c98f0f24569201e5cb42c4d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common.Application;
using Tango.PPC.Common.Connection;
using Tango.PPC.Common.Notifications;
namespace Tango.PPC.Common.UpdatePackages
{
public class PackageContext
{
public IPPCApplicationManager ApplicationManager { get; set; }
public IMachineProvider MachineProvider { get; set; }
public INotificationProvider NotificationProvider { get; set; }
public Version InstalledVersion { get; set; }
public Version DeltaVersion { get; set; }
}
}
|