10 lines
233 B
C#
10 lines
233 B
C#
using System.Collections.Generic;
|
|
using Umbraco.Web.Models.ContentEditing;
|
|
|
|
namespace Umbraco.Web.Trees
|
|
{
|
|
public interface ISearchableTree
|
|
{
|
|
IEnumerable<SearchResultItem> Search(string searchText);
|
|
}
|
|
} |