using System; using System.Collections.Generic; using Oqtane.Models; namespace Oqtane.Interfaces { public interface ISearchable { public List GetSearchContents(PageModule pageModule, DateTime startTime); } }