21 lines
407 B
C#
21 lines
407 B
C#
/// 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;
|
|
}
|
|
}
|
|
|