11 lines
314 B
C#
11 lines
314 B
C#
using Nop.Core.Domain.Shipping;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Shipping.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a product availability range cache event consumer
|
|
/// </summary>
|
|
public partial class ProductAvailabilityRangeCacheEventConsumer : CacheEventConsumer<ProductAvailabilityRange>
|
|
{
|
|
} |