FruitBank/Libraries/Nop.Services/Messages/Caching/CampaignCacheEventConsumer.cs

11 lines
264 B
C#

using Nop.Core.Domain.Messages;
using Nop.Services.Caching;
namespace Nop.Services.Messages.Caching;
/// <summary>
/// Represents a campaign cache event consumer
/// </summary>
public partial class CampaignCacheEventConsumer : CacheEventConsumer<Campaign>
{
}