using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Diagnostics
{
///
/// Represents a Tango machine diagnostics recording file time code channel frame.
///
[Serializable]
public class DiagnosticsTimeCodeChannelFrame
{
///
/// Gets or sets the position of the diagnostics data frame within the recording file stream.
///
public long Position { get; set; }
///
/// Gets or sets the length of the diagnostics data frame within the recording file stream.
///
public long FrameLength { get; set; }
///
/// Gets or sets the time stamp of the diagnostics data frame in milliseconds.
///
public int Milliseconds { get; set; }
}
}