using System; using System.Collections.Generic; namespace Unity.Services.Core.Telemetry.Internal { class Diagnostics : IDiagnostics { internal IDictionary PackageTags { get; } = new Dictionary(); public void SendDiagnostic(string name, string message, IDictionary tags = null) { // do nothing } } }