namespace Umbraco.Core
{
///
/// Describes the levels in which the runtime can run.
///
public enum RuntimeLevel
{
///
/// The runtime has failed to boot and cannot run.
///
BootFailed = -1,
///
/// The level is unknown.
///
Unknown = 0,
///
/// The runtime is booting.
///
Boot = 1,
///
/// The runtime has detected that Umbraco is not installed at all, ie there is
/// no database, and is currently installing Umbraco.
///
Install = 2,
///
/// The runtime has detected an Umbraco install which needed to be upgraded, and
/// is currently upgrading Umbraco.
///
Upgrade = 3,
///
/// The runtime has detected an up-to-date Umbraco install and is running.
///
Run = 4
}
}