啊鑫
2024-07-11 afbf8700d137710713db61955879d0f5acb73738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#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; }
        }
    }
}