11 lines
327 B
C#
11 lines
327 B
C#
using Nop.Core.Domain.Shipping;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Shipping.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents a shipping method-country mapping cache event consumer
|
|
/// </summary>
|
|
public partial class ShippingMethodCountryMappingCacheEventConsumer : CacheEventConsumer<ShippingMethodCountryMapping>
|
|
{
|
|
} |