namespace DeepSpeechClient.Models
{
///
/// Stores each individual character, along with its timing information.
///
public class MetadataItem
{
///
/// Char of the current timestep.
///
public string Character;
///
/// Position of the character in units of 20ms.
///
public int Timestep;
///
/// Position of the character in seconds.
///
public float StartTime;
}
}