17 lines
340 B
C#
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();
|
|
}
|
|
}
|