Try your search with a different keyword or use * as a wildcard.
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; }
}