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 = 1037; public const int DefaultMediaListViewDataTypeId = 1038; public const int DefaultMembersListViewDataTypeId = 1039; } } }