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
{
///
/// Represents a updates result.
///
public class MachineUpdatesResult
{
///
/// Gets or sets the list of software updates.
///
public List Updates { get; set; }
///
/// Gets or sets the installed packages.
///
public List Packages { get; set; }
///
/// Initializes a new instance of the class.
///
public MachineUpdatesResult()
{
Updates = new List();
Packages = new List();
}
}
}