mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 10:41:58 +08:00
26 lines
819 B
C#
26 lines
819 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /openapi/nlp/translate_en2cn/{TOKEN} 接口的响应。</para>
|
|
/// </summary>
|
|
public class OpenApiNLPTranslateEnglish2ChineseResponse : WechatOpenAIResponse<OpenApiNLPTranslateEnglish2ChineseResponse.Types.Data>
|
|
{
|
|
public static class Types
|
|
{
|
|
public class Data
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置结果。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("result")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("result")]
|
|
public string Result { get; set; } = default!;
|
|
}
|
|
}
|
|
}
|
|
}
|