mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
LF is the git default and all new files are stored as such. Old files from the hg to git conversion however were moved over as CRLF.
14 lines
350 B
C#
14 lines
350 B
C#
using System;
|
|
|
|
namespace Orchard.Indexing.Services {
|
|
public enum IndexingStatus {
|
|
Rebuilding,
|
|
Updating,
|
|
Idle,
|
|
Unavailable
|
|
}
|
|
public interface IIndexStatisticsProvider : IDependency {
|
|
DateTime GetLastIndexedUtc(string indexName);
|
|
IndexingStatus GetIndexingStatus(string indexName);
|
|
}
|
|
} |