using System.Collections.Generic; namespace Amazon.AwsToolkit.Telemetry.Events.Core { public sealed class MetricDatum { public IDictionary Metadata { get; } = new Dictionary(); public string MetricName { get; set; } public Unit Unit { get; set; } = Unit.None; public double Value { get; set; } = 0; public bool Passive { get; set; } = false; } }