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;

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}");

    #endregion
}