12 lines
348 B
C#
12 lines
348 B
C#
namespace VoiceToFunction
|
|
{
|
|
// 语音解析结果(新增参数类型信息)
|
|
public class ParsedResult
|
|
{
|
|
public string FunctionName { get; set; }
|
|
public object[] Parameters { get; set; }
|
|
public string[] ParamTypes { get; set; } // 实际提取的参数类型
|
|
public string Error { get; set; }
|
|
}
|
|
}
|