FruitBank/Libraries/Nop.Services/Polls/Caching/PollCacheEventConsumer.cs

11 lines
246 B
C#

using Nop.Core.Domain.Polls;
using Nop.Services.Caching;
namespace Nop.Services.Polls.Caching;
/// <summary>
/// Represents a poll cache event consumer
/// </summary>
public partial class PollCacheEventConsumer : CacheEventConsumer<Poll>
{
}