namespace DeepSpeechClient.Models
{
///
/// Stores the entire CTC output as an array of character metadata objects.
///
public class Metadata
{
///
/// Approximated confidence value for this transcription.
///
public double Confidence { get; set; }
///
/// List of metada items containing char, timespet, and time offset.
///
public MetadataItem[] Items { get; set; }
}
}