11 lines
230 B
C#
11 lines
230 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace TTS.Struct
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct SherpaOnnxOfflineTtsConfig
|
|
{
|
|
public SherpaOnnxOfflineTtsModelConfig model;
|
|
}
|
|
}
|