mirror of https://github.com/abpframework/abp.git
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
using JetBrains.Annotations; |
|||
using Volo.Abp.GlobalFeatures; |
|||
|
|||
namespace Volo.CmsKit.GlobalFeatures |
|||
{ |
|||
[GlobalFeatureName(Name)] |
|||
public class BlogsFeature : GlobalFeature |
|||
{ |
|||
public const string Name = "CmsKit.Blogs"; |
|||
|
|||
internal BlogsFeature( |
|||
[NotNull] GlobalCmsKitFeatures cmsKit |
|||
) : base(cmsKit) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue