Mango.Nop.Libraries/Nop.Services/Media/Caching/DownloadCacheEventConsumer.cs

11 lines
258 B
C#

using Nop.Core.Domain.Media;
using Nop.Services.Caching;
namespace Nop.Services.Media.Caching;
/// <summary>
/// Represents a download cache event consumer
/// </summary>
public partial class DownloadCacheEventConsumer : CacheEventConsumer<Download>
{
}