namespace Umbraco.Core
{
public static partial class Constants
{
///
/// Defines the alias identifiers for Umbraco's core application sections.
///
public static class Applications
{
///
/// Application alias for the content section.
///
public const string Content = "content";
///
/// Application alias for the developer section.
///
public const string Developer = "developer";
///
/// Application alias for the media section.
///
public const string Media = "media";
///
/// Application alias for the members section.
///
public const string Members = "member";
///
/// Application alias for the settings section.
///
public const string Settings = "settings";
///
/// Application alias for the translation section.
///
public const string Translation = "translation";
///
/// Application alias for the users section.
///
public const string Users = "users";
}
///
/// Defines the alias identifiers for Umbraco's core trees.
///
public static class Trees
{
///
/// alias for the content tree.
///
public const string Content = "content";
///
/// alias for the media tree.
///
public const string Members = "member";
///
/// alias for the media tree.
///
public const string Media = "media";
///
/// alias for the datatype tree.
///
public const string DataTypes = "datatype";
//TODO: Fill in the rest!
}
}
}