namespace Umbraco.Cms.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 packages section. /// public const string Packages = "packages"; /// /// 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 content blueprint tree. /// public const string ContentBlueprints = "contentBlueprints"; /// /// 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 = "packages"; /// /// 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 member group tree. /// public const string MemberGroups = "memberGroups"; /// /// alias for the template tree. /// public const string Templates = "templates"; public const string RelationTypes = "relationTypes"; public const string Languages = "languages"; /// /// alias for the user types tree. /// public const string UserTypes = "userTypes"; /// /// alias for the user permissions tree. /// public const string UserPermissions = "userPermissions"; /// /// alias for the users tree. /// public const string Users = "users"; public const string Scripts = "scripts"; public const string PartialViews = "partialViews"; public const string LogViewer = "logViewer"; public const string Webhooks = "webhooks"; public static class Groups { public const string Settings = "settingsGroup"; public const string Templating = "templatingGroup"; public const string ThirdParty = "thirdPartyGroup"; } // TODO: Fill in the rest! } }