oqtane.framework/Oqtane.Client/Services/IModuleDefinitionService.cs
2019-05-04 20:32:08 -04:00

12 lines
243 B
C#

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