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"; /// /// Application alias for the users section. /// public const string Forms = "forms"; } /// /// 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"; /// /// alias for the dictionary tree. /// public const string Dictionary = "dictionary"; //TODO: Fill in the rest! /// /// alias for the media tree. /// public const string Templates = "template"; public const string RelationTypes = "relationTypes"; public const string Xslt = "xslt"; public const string Languages = "languages"; } } }