using Nop.Core.Configuration; namespace Nop.Plugin.Widgets.GoogleAnalytics; public class GoogleAnalyticsSettings : ISettings { public string GoogleId { get; set; } public string ApiSecret { get; set; } public string TrackingScript { get; set; } public bool EnableEcommerce { get; set; } public bool UseSandbox { get; set; } public bool IncludingTax { get; set; } /// /// Gets or sets a value indicating whether to include customer identifier to script /// public bool IncludeCustomerId { get; set; } }