Files
mixtape/zero.Demo/GoogleAnalyticsIntegration.cs
T

18 lines
457 B
C#
Raw Normal View History

2021-12-22 00:14:48 +01:00
using zero.Configuration;
namespace zero.Demo
{
2021-12-22 15:41:11 +01:00
public class GoogleAnalyticsIntegration : Integration
2021-12-22 00:14:48 +01:00
{
/// <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; }
}
}