using System;
using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct MetadataItem
{
///
/// Native character.
///
internal unsafe IntPtr character;
///
/// Position of the character in units of 20ms.
///
internal unsafe int timestep;
///
/// Position of the character in seconds.
///
internal unsafe float start_time;
}
}