Moves more services and registrations "up", removes AspNetCoreComposer logic and moves to AddWebComponents

This commit is contained in:
Shannon
2020-12-24 14:29:26 +11:00
parent 1328ca3cee
commit e785ac28a3
47 changed files with 402 additions and 429 deletions

View File

@@ -0,0 +1,22 @@
namespace Umbraco.Core.Trees
{
public class SearchableApplicationTree
{
public SearchableApplicationTree(string appAlias, string treeAlias, int sortOrder, string formatterService, string formatterMethod, ISearchableTree searchableTree)
{
AppAlias = appAlias;
TreeAlias = treeAlias;
SortOrder = sortOrder;
FormatterService = formatterService;
FormatterMethod = formatterMethod;
SearchableTree = searchableTree;
}
public string AppAlias { get; }
public string TreeAlias { get; }
public int SortOrder { get; }
public string FormatterService { get; }
public string FormatterMethod { get; }
public ISearchableTree SearchableTree { get; }
}
}