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