Changes to method names per request

This commit is contained in:
Mitchel Sellers
2019-05-19 21:05:10 -05:00
parent 86adae19c1
commit 4d55c68e4b
7 changed files with 14 additions and 14 deletions

View File

@ -7,8 +7,8 @@ namespace Oqtane.Services
public interface IThemeService
{
Task<List<Theme>> GetThemesAsync();
Dictionary<string, string> CalculateSelectableThemes(List<Theme> themes);
Dictionary<string, string> CalculateSelectablePaneLayouts(List<Theme> themes);
Dictionary<string, string> CalculateSelectableContainers(List<Theme> themes);
Dictionary<string, string> GetThemeTypes(List<Theme> themes);
Dictionary<string, string> GetPaneLayoutTypes(List<Theme> themes);
Dictionary<string, string> GetContainerTypes(List<Theme> themes);
}
}