mirror of https://github.com/abpframework/abp
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.
19 lines
381 B
19 lines
381 B
using JetBrains.Annotations;
|
|
using Volo.Abp.GlobalFeatures;
|
|
|
|
namespace Volo.CmsKit.GlobalFeatures
|
|
{
|
|
[GlobalFeatureName(Name)]
|
|
public class CommentsFeature : GlobalFeature
|
|
{
|
|
public const string Name = "CmsKit.Comments";
|
|
|
|
internal CommentsFeature(
|
|
[NotNull] GlobalCmsKitFeatures cmsKit
|
|
) : base(cmsKit)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|