Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NopShippingDefaults.cs

using Nop.Core.Caching;
using Nop.Core.Domain.Shipping;

namespace Nop.Services.Shipping;

/// 
/// Represents default values related to shipping services
/// 
public static partial class NopShippingDefaults
{
    #region Caching defaults

    /// 
    /// Gets a key for caching
    /// 
    /// 
    /// {0} : country identifier
    /// 
    public static CacheKey ShippingMethodsAllCacheKey => new("Nop.shippingmethod.all.{0}", NopEntityCacheDefaults.AllPrefix);

    #endregion
}