Files
oqtane.framework/Oqtane.Client/Services/Interfaces/IPackageService.cs
2020-04-03 17:18:33 -04:00

13 lines
321 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Oqtane.Models;
namespace Oqtane.Services.Interfaces
{
public interface IPackageService
{
Task<List<Package>> GetPackagesAsync(string tag);
Task DownloadPackageAsync(string packageId, string version, string folder);
}
}