/// Copyright (c) 2024 Xiaomi Corporation using System.Runtime.InteropServices; namespace SherpaOnnx { [StructLayout(LayoutKind.Sequential)] public struct OfflineSpeakerSegmentationPyannoteModelConfig { public OfflineSpeakerSegmentationPyannoteModelConfig() { Model = ""; } [MarshalAs(UnmanagedType.LPStr)] public string Model; } }