using System; using System.Collections.Generic; namespace Orchard.Indexing.Services { public class IndexEntry { public string IndexName { get; set; } public int DocumentCount { get; set; } public DateTime? LastUpdateUtc { get; set; } public IEnumerable Fields { get; set; } } public interface IIndexingService : IDependency { void RebuildIndex(); void UpdateIndex(); IndexEntry GetIndexEntry(); } }