using System.Collections.Generic; namespace Unity.Services.Core.Telemetry.Internal { class DisabledDiagnostics : IDiagnostics { void IDiagnostics.SendDiagnostic(string name, string message, IDictionary tags) { // Do nothing since it's disabled. } } }