oqtane.framework/Oqtane.Shared/Interfaces/ISearchable.cs
2024-07-02 14:50:26 -04:00

12 lines
244 B
C#

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