#region
|
|
using System;
|
using System.Collections.Generic;
|
|
#endregion
|
|
namespace CSFrameworkV5.Language
|
{
|
/// <summary>
|
/// 百度翻译结果(JSON)转换
|
/// </summary>
|
[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<Data> trans_result { get; set; }
|
|
[Serializable]
|
public class Data
|
{
|
public string dst { get; set; }
|
public string src { get; set; }
|
}
|
}
|
}
|