/// Copyright (c) 2025 Xiaomi Corporation (authors: Fangjun Kuang) using System.Runtime.InteropServices; namespace SherpaOnnx { [StructLayout(LayoutKind.Sequential)] public struct OfflineTtsKokoroModelConfig { public OfflineTtsKokoroModelConfig() { Model = ""; Voices = ""; Tokens = ""; DataDir = ""; LengthScale = 1.0F; DictDir = ""; Lexicon = ""; } [MarshalAs(UnmanagedType.LPStr)] public string Model; [MarshalAs(UnmanagedType.LPStr)] public string Voices; [MarshalAs(UnmanagedType.LPStr)] public string Tokens; [MarshalAs(UnmanagedType.LPStr)] public string DataDir; public float LengthScale; [MarshalAs(UnmanagedType.LPStr)] public string DictDir; [MarshalAs(UnmanagedType.LPStr)] public string Lexicon; } }