21 lines
603 B
C#
21 lines
603 B
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Core.Security;
|
|
|
|
public partial class CookieSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Expiration time on hours for the "Compare products" cookie
|
|
/// </summary>
|
|
public int CompareProductsCookieExpires { get; set; }
|
|
|
|
/// <summary>
|
|
/// Expiration time on hours for the "Recently viewed products" cookie
|
|
/// </summary>
|
|
public int RecentlyViewedProductsCookieExpires { get; set; }
|
|
|
|
/// <summary>
|
|
/// Expiration time on hours for the "Customer" cookie
|
|
/// </summary>
|
|
public int CustomerCookieExpires { get; set; }
|
|
} |