using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Common.Synchronization { public enum SynchronizationState { [Description("Pending...")] Pending, [Description("Synchronizing...")] Synchronizing, [Description("Failed")] Failed, [Description("Completed")] Completed, [Description("Disabled")] Disabled } }