aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/MachineUpdates/IMachineUpdatesProvider.cs
blob: b465ca90c5cc4dc2dbfc448b43a6d46ea663f7d5 (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;

namespace Tango.FSE.Common.MachineUpdates
{
    /// <summary>
    /// Represents a remote machine, application, firmware and other updates information provider.
    /// </summary>
    public interface IMachineUpdatesProvider
    {
        /// <summary>
        /// Gets the history of machine updates.
        /// </summary>
        /// <returns></returns>
        Task<MachineUpdatesResult> GetUpdates();
    }
}