Added ability to install modules and skins at run-time directly from Nuget
This commit is contained in:
12
Oqtane.Client/Services/Interfaces/IPackageService.cs
Normal file
12
Oqtane.Client/Services/Interfaces/IPackageService.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IPackageService
|
||||
{
|
||||
Task<List<Package>> GetPackagesAsync(string Tag);
|
||||
Task DownloadPackageAsync(string PackageId, string Version, string Folder);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user