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

21 lines
442 B
C#
Raw Normal View History

2021-02-21 20:45:03 +13:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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();
}
}