15 lines
429 B
C#
15 lines
429 B
C#
using Oqtane.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface IThemeService
|
|
{
|
|
Task<List<Theme>> GetThemesAsync();
|
|
Dictionary<string, string> GetThemeTypes(List<Theme> themes);
|
|
Dictionary<string, string> GetPaneLayoutTypes(List<Theme> themes);
|
|
Dictionary<string, string> GetContainerTypes(List<Theme> themes);
|
|
}
|
|
}
|