Webiant Logo Webiant Logo
  1. No results found.

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

CookieSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Security;

public partial class CookieSettings : ISettings
{
    /// 
    /// Expiration time on hours for the "Compare products" cookie
    /// 
    public int CompareProductsCookieExpires { get; set; }

    /// 
    /// Expiration time on hours for the "Recently viewed products" cookie
    /// 
    public int RecentlyViewedProductsCookieExpires { get; set; }

    /// 
    /// Expiration time on hours for the "Customer" cookie
    /// 
    public int CustomerCookieExpires { get; set; }
}