18 lines
568 B
C#
18 lines
568 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to include customer identifier to script
|
|
/// </summary>
|
|
public bool IncludeCustomerId { get; set; }
|
|
} |