#region
using System;
using System.Collections.Generic;
#endregion
namespace CSFrameworkV5.Language
{
///
/// 百度翻译结果(JSON)转换
///
[Serializable]
public class BaiduTransResult
{
public string error_code { get; set; }
public string error_msg { get; set; }
public string from { get; set; }
public string to { get; set; }
public List trans_result { get; set; }
[Serializable]
public class Data
{
public string dst { get; set; }
public string src { get; set; }
}
}
}