FruitBank/Libraries/Nop.Services/Forums/Caching/ForumPostCacheEventConsumer.cs

11 lines
264 B
C#

using Nop.Core.Domain.Forums;
using Nop.Services.Caching;
namespace Nop.Services.Forums.Caching;
/// <summary>
/// Represents a forum post cache event consumer
/// </summary>
public partial class ForumPostCacheEventConsumer : CacheEventConsumer<ForumPost>
{
}