namespace Umbraco.Core { public static partial class Constants { /// /// Defines the identifiers for Umbraco system nodes. /// public static class System { /// /// The integer identifier for global system root node. /// public const int Root = -1; /// /// The integer identifier for content's recycle bin. /// public const int RecycleBinContent = -20; /// /// The integer identifier for media's recycle bin. /// public const int RecycleBinMedia = -21; public const string UmbracoConnectionName = "umbracoDbDSN"; public const string UmbracoUpgradePlanName = "Umbraco.Core"; } } }