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