using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Umbraco.Core.Sync { public enum SyncBootState { /// /// Unknown state. Treat as HasSyncState /// Unknown = 0, /// /// Cold boot. No Sync state /// ColdBoot = 1, /// /// Warm boot. Sync state present /// HasSyncState = 2 } }