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 int DefaultContentListViewDataTypeId = -95;
public const int DefaultMediaListViewDataTypeId = -96;
public const int DefaultMembersListViewDataTypeId = -97;
}
}
}