using Nop.Core.Domain.Media; using Nop.Services.Caching; namespace Nop.Services.Media.Caching; /// /// Represents a picture cache event consumer /// public partial class PictureCacheEventConsumer : CacheEventConsumer { /// /// Clear cache data /// /// Entity /// A task that represents the asynchronous operation protected override async Task ClearCacheAsync(Picture entity) { await RemoveByPrefixAsync(NopMediaDefaults.ThumbsExistsPrefix); } }