22 lines
559 B
C#
22 lines
559 B
C#
using Nop.Core.Caching;
|
|
using Nop.Core.Domain.Shipping;
|
|
|
|
namespace Nop.Services.Shipping;
|
|
|
|
/// <summary>
|
|
/// Represents default values related to shipping services
|
|
/// </summary>
|
|
public static partial class NopShippingDefaults
|
|
{
|
|
#region Caching defaults
|
|
|
|
/// <summary>
|
|
/// Gets a key for caching
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// {0} : country identifier
|
|
/// </remarks>
|
|
public static CacheKey ShippingMethodsAllCacheKey => new("Nop.shippingmethod.all.{0}", NopEntityCacheDefaults<ShippingMethod>.AllPrefix);
|
|
|
|
#endregion
|
|
} |