namespace Admin.NET.Core;
///
/// 百度翻译结果
///
public class BaiDuTranslationResult
{
///
/// 源语种
///
public string From { get; set; }
///
/// 目标语种
///
public string To { get; set; }
///
/// 翻译结果
///
public List trans_result { get; set; }
///
/// 错误码 正常为0
///
public string error_code { get; set; } = "0";
///
/// 错误信息
///
public string error_msg { get; set; } = String.Empty;
}
///
/// 翻译结果
///
public class TransResult
{
///
/// 源字符
///
public string Src { get; set; }
///
/// 目标字符
///
public string Dst { get; set; } = string.Empty;
}