blob: 4006844ec38da74df76748ab25f2fe886df5ab4f (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
/// <summary>
/// Initializes a new instance of the <see cref="DiagnosticsTimeCodeChannel"/> class.
/// </summary>
public DiagnosticsTimeCodeChannel()
{
Frames = new List<DiagnosticsTimeCodeChannelFrame>();
}
}
}
|