mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-30 00:33:05 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Interfaces
|
|
{
|
|
public interface ISearchable
|
|
{
|
|
public IList<SearchContent> GetSearchContent(Module module, DateTime startTime);
|
|
}
|
|
}
|