18 lines
413 B
C#
18 lines
413 B
C#
/// Copyright (c) 2025 Xiaomi Corporation (authors: Fangjun Kuang)
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace SherpaOnnx
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct OfflineSpeechDenoiserGtcrnModelConfig
|
|
{
|
|
public OfflineSpeechDenoiserGtcrnModelConfig()
|
|
{
|
|
Model = "";
|
|
}
|
|
[MarshalAs(UnmanagedType.LPStr)]
|
|
public string Model;
|
|
}
|
|
}
|