using System;
using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct Metadata
{
///
/// Native list of candidate transcripts.
///
internal unsafe IntPtr transcripts;
///
/// Count of transcripts from the native side.
///
internal unsafe int num_transcripts;
}
}