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 forms 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 member 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 = "dataTypes"; /// /// alias for the packages tree /// public const string Packages = "packager"; /// /// alias for the dictionary tree. /// public const string Dictionary = "dictionary"; public const string Stylesheets = "stylesheets"; /// /// alias for the document type tree. /// public const string DocumentTypes = "documentTypes"; /// /// alias for the media type tree. /// public const string MediaTypes = "mediaTypes"; /// /// alias for the member type tree. /// public const string MemberTypes = "memberTypes"; /// /// alias for the template tree. /// public const string Templates = "templates"; public const string RelationTypes = "relationTypes"; public const string Xslt = "xslt"; public const string Languages = "languages"; //TODO: Fill in the rest! } } }