blob: 242a9709f25055258047ef84a3a13f9269572e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
namespace Tango.Integration.Diagnostics
{
/// <summary>
/// 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.
/// </summary>
[Serializable]
public class DiagnosticsTimeCodeChannel
{
/// <summary>
/// Gets or sets the time code frames.
/// </summary>
public List<DiagnosticsTimeCodeChannelFrame> Frames { get; set; }
public List<DiagnosticsFileEvent> Events { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="DiagnosticsTimeCodeChannel"/> class.
/// </summary>
public DiagnosticsTimeCodeChannel()
{
Frames = new List<DiagnosticsTimeCodeChannelFrame>();
Events = new List<DiagnosticsFileEvent>();
}
}
}
|