18 lines
457 B
C#
18 lines
457 B
C#
using zero.Configuration;
|
|
|
|
namespace zero.Demo
|
|
{
|
|
public class GoogleAnalyticsIntegration : Integration
|
|
{
|
|
/// <summary>
|
|
/// Provided tracking ID from Google
|
|
/// </summary>
|
|
public string TrackingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Verifying ownership of the site (via Google Search Console) with this id
|
|
/// Found in verification method -> HTML Tag
|
|
/// </summary>
|
|
public string SiteVerificationId { get; set; }
|
|
}
|
|
} |