mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
903 B
41 lines
903 B
namespace Volo.CmsKit.Admin.Web.Menus;
|
|
|
|
public class CmsKitAdminMenus
|
|
{
|
|
public const string GroupName = "Cms";
|
|
|
|
public static class Comments
|
|
{
|
|
public const string CommentsMenu = GroupName + ".Comments";
|
|
}
|
|
|
|
public static class Tags
|
|
{
|
|
public const string TagsMenu = GroupName + ".Tags";
|
|
}
|
|
|
|
public static class Pages
|
|
{
|
|
public const string PagesMenu = GroupName + ".Pages";
|
|
}
|
|
|
|
public static class Blogs
|
|
{
|
|
public const string BlogsMenu = GroupName + ".Blogs";
|
|
}
|
|
|
|
public static class BlogPosts
|
|
{
|
|
public const string BlogPostsMenu = GroupName + ".BlogPosts";
|
|
}
|
|
|
|
public static class Menus
|
|
{
|
|
public const string MenusMenu = GroupName + ".Menus";
|
|
}
|
|
|
|
public static class GlobalResources
|
|
{
|
|
public const string GlobalResourcesMenu = GroupName + ".GlobalResources";
|
|
}
|
|
}
|
|
|