FruitBank/Libraries/Nop.Services/Vendors/Caching/VendorCacheEventConsumer.cs

11 lines
256 B
C#

using Nop.Core.Domain.Vendors;
using Nop.Services.Caching;
namespace Nop.Services.Vendors.Caching;
/// <summary>
/// Represents a vendor cache event consumer
/// </summary>
public partial class VendorCacheEventConsumer : CacheEventConsumer<Vendor>
{
}