blob: 0c1dd2c65ffea4945d696f4e70b866cebadfee21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.PPC.Shared.Updates;
namespace Tango.FSE.Common.MachineUpdates
{
/// <summary>
/// Represents a <see cref="IMachineUpdatesProvider"/> updates result.
/// </summary>
public class MachineUpdatesResult
{
/// <summary>
/// Gets or sets the list of software updates.
/// </summary>
public List<TangoUpdate> Updates { get; set; }
/// <summary>
/// Gets or sets the installed packages.
/// </summary>
public List<PackageInstallation> Packages { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="MachineUpdatesResult"/> class.
/// </summary>
public MachineUpdatesResult()
{
Updates = new List<TangoUpdate>();
Packages = new List<PackageInstallation>();
}
}
}
|