Remotely/Agent/Interfaces/IUpdater.cs

12 lines
228 B
C#

using System;
using System.Threading.Tasks;
namespace Remotely.Agent.Interfaces
{
public interface IUpdater
{
Task BeginChecking();
Task CheckForUpdates();
Task InstallLatestVersion();
}
}