oqtane.framework/Oqtane.Client/Services/Interfaces/IModuleDefinitionService.cs
2019-09-07 23:26:19 -04:00

13 lines
280 B
C#

using Oqtane.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
public interface IModuleDefinitionService
{
Task<List<ModuleDefinition>> GetModuleDefinitionsAsync();
Task InstallModulesAsync();
}
}