using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IThemeService { Task> GetThemesAsync(); Dictionary GetThemeTypes(List themes); Dictionary GetPaneLayoutTypes(List themes, string themeName); Dictionary GetContainerTypes(List themes); Task InstallThemesAsync(); Task DeleteThemeAsync(string themeName); } }