using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common
{
///
/// Represents the various PPC application states.
///
public enum ApplicationStates
{
///
/// Before the machine has past the provisioning step by the .
///
PreSetup = 0,
///
/// Application is ready to run as normal.
///
Ready = 1,
///
/// Performs a machine provisioning without operation system changes.
///
FactoryRestore = 2,
}
}