using System; using System.Collections.Generic; using System.Linq; namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models { /// /// 表示 [POST] /openapi/nlp/translate_en2cn/{TOKEN} 接口的响应。 /// public class OpenApiNLPTranslateEnglish2ChineseResponse : WechatOpenAIResponse { public static class Types { public class Data { /// /// 获取或设置结果。 /// [Newtonsoft.Json.JsonProperty("result")] [System.Text.Json.Serialization.JsonPropertyName("result")] public string Result { get; set; } = default!; } } } }