Files
Umbraco-CMS/src/Umbraco.Core/Sync/ISyncBootStateAccessor.cs

17 lines
340 B
C#

using System;
namespace Umbraco.Core.Sync
{
/// <summary>
/// Retrieve the state of the sync service
/// </summary>
public interface ISyncBootStateAccessor
{
/// <summary>
/// Get the boot state
/// </summary>
/// <returns></returns>
SyncBootState GetSyncBootState();
}
}