mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
9 lines
261 B
C#
9 lines
261 B
C#
using System.Collections.Generic;
|
|
using Orchard.Indexing;
|
|
|
|
namespace Orchard.Search.Models {
|
|
public class SearchResult : ISearchResult {
|
|
public IEnumerable<ISearchHit> Page { get; set; }
|
|
public int TotalCount { get; set; }
|
|
}
|
|
} |