14 lines
504 B
C#
14 lines
504 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Glitonea.Mvvm;
|
|
using Saradomin.Model;
|
|
|
|
namespace Saradomin.Infrastructure.Services
|
|
{
|
|
public interface IPluginDownloadService : IService
|
|
{
|
|
Task<List<string>> FetchFileListForPlugin(string pluginName);
|
|
Task DownloadPluginFiles(string pluginName, string pluginRepositoryPath);
|
|
Task<List<PluginInfo>> GetAllMetadata (string pluginRepositoryPath, bool isUpdateCheck, bool writePersistentUpdateFlag);
|
|
}
|
|
} |