using Nop.Core.Configuration; namespace Nop.Services.Helpers; /// /// DateTime settings /// public partial class DateTimeSettings : ISettings { /// /// Gets or sets a default store time zone identifier /// public string DefaultStoreTimeZoneId { get; set; } /// /// Gets or sets a value indicating whether customers are allowed to select theirs time zone /// public bool AllowCustomersToSetTimeZone { get; set; } }