Files
mixtape/zero.Demo/GoogleAnalyticsIntegration.cs
T
2021-12-22 15:41:11 +01:00

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; }
}
}