using System; using System.Collections.Generic; namespace Amazon.AwsToolkit.Telemetry.Events.Core { /// /// Generalized Telemetry information for an event. /// Recorded using /// public sealed class Metrics { /// /// Timestamp to associate with all Data entries /// public DateTime CreatedOn; public IList Data = new List(); } }