DeepSpeech/native_client/dotnet/DeepSpeechClient/Models/Metadata.cs
Reuben Morais ae0cf8db6a Revert "Merge branch 'rename-real'"
This reverts commit ae9fdb183e, reversing
changes made to 2eb75b6206.
2020-08-26 11:46:09 +02:00

13 lines
346 B
C#

namespace DeepSpeechClient.Models
{
/// <summary>
/// Stores the entire CTC output as an array of character metadata objects.
/// </summary>
public class Metadata
{
/// <summary>
/// List of candidate transcripts.
/// </summary>
public CandidateTranscript[] Transcripts { get; set; }
}
}