Files
mixtape/zero.Demo/FathomAnalyticsIntegration.cs
T

17 lines
356 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 FathomAnalyticsIntegration : Integration
2021-12-22 00:14:48 +01:00
{
/// <summary>
/// ID of the site in Fathom
/// </summary>
public string SiteId { get; set; }
/// <summary>
/// Custom domain URL (without /script.js)
/// </summary>
public string CustomDomain { get; set; }
}
}