namespace Umbraco.Cms.Core.Configuration.Models; /// /// Represents the configured Umbraco runtime mode. /// public enum RuntimeMode { /// /// The backoffice development mode ensures the runtime is configured for rapidly applying changes within the backoffice. /// BackofficeDevelopment = 0, /// /// The development mode ensures the runtime is configured for rapidly applying changes. /// Development = 1, /// /// The production mode ensures optimal performance settings are configured and denies any changes that would require recompilations. /// Production = 2 }