Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Services.Helpers;
/// <summary>
/// DateTime settings
/// </summary>
public partial class DateTimeSettings : ISettings
{
/// <summary>
/// Gets or sets a default store time zone identifier
/// </summary>
public string DefaultStoreTimeZoneId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether customers are allowed to select theirs time zone
/// </summary>
public bool AllowCustomersToSetTimeZone { get; set; }
}