using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.MachineUpdates { /// /// Represents a remote machine, application, firmware and other updates information provider. /// public interface IMachineUpdatesProvider { /// /// Gets the history of machine updates. /// /// Task GetUpdates(); } }