mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-24 19:08:18 +08:00
9 lines
251 B
C#
9 lines
251 B
C#
using Orchard.ContentManagement;
|
|
using Orchard.Indexing;
|
|
|
|
namespace Orchard.Search.ViewModels {
|
|
public class SearchResultViewModel {
|
|
public ISearchHit SearchHit { get; set; }
|
|
public IContent Content { get; set; }
|
|
}
|
|
} |