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 static class DatabaseProviders
{
public const string SqlCe = "System.Data.SqlServerCe.4.0";
public const string SqlServer = "System.Data.SqlClient";
public const string MySql = "MySql.Data.MySqlClient";
}
}
}