2013-03-22 13:11:27 +00:00
|
|
|
|
namespace Umbraco.Core
|
|
|
|
|
|
{
|
|
|
|
|
|
public static partial class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines the identifiers for Umbraco system nodes.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class System
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for global system root node.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int Root = -1;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for content's recycle bin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int RecycleBinContent = -20;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The integer identifier for media's recycle bin.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int RecycleBinMedia = -21;
|
2016-06-03 10:57:54 +02:00
|
|
|
|
}
|
2016-05-18 10:55:19 +02:00
|
|
|
|
}
|
2013-03-22 13:11:27 +00:00
|
|
|
|
}
|