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); Dictionary GetContainerTypes(List themes); } }