13 lines
322 B
C#

using System;
using System.Threading.Tasks;
using Glitonea.Mvvm;
namespace Saradomin.Infrastructure.Services
{
public interface IJavaUpdateService : IService
{
event EventHandler<Tuple<float, bool>> JavaDownloadProgressChanged;
Task DownloadAndSetJava11(ISettingsService settingsService);
}
}