blob: a5c3f7d43cb2782d8c2f7284fbb8cf72e31860d7 (
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
|
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 frame.
/// </summary>
[Serializable]
public class DiagnosticsTimeCodeChannelFrame
{
/// <summary>
/// Gets or sets the position of the diagnostics data frame within the recording file stream.
/// </summary>
public long Position { get; set; }
/// <summary>
/// Gets or sets the length of the diagnostics data frame within the recording file stream.
/// </summary>
public long FrameLength { get; set; }
/// <summary>
/// Gets or sets the time stamp of the diagnostics data frame in milliseconds.
/// </summary>
public int Milliseconds { get; set; }
}
}
|