using Umbraco.Cms.Core.Telemetry.Models; namespace Umbraco.Cms.Core.Telemetry; /// /// Service which gathers the data for telemetry reporting /// public interface ITelemetryService { /// /// Try and get the /// bool TryGetTelemetryReportData(out TelemetryReportData? telemetryReportData); }