using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.Integration.Diagnostics { /// /// Represents a Tango machine diagnostics recording file time code channel containing the collection /// of time code frames necessary to properly parse and play the recorded diagnostics data. /// [Serializable] public class DiagnosticsTimeCodeChannel { /// /// Gets or sets the time code frames. /// public List Frames { get; set; } public List Events { get; set; } /// /// Initializes a new instance of the class. /// public DiagnosticsTimeCodeChannel() { Frames = new List(); Events = new List(); } } }