gxc
2020-01-08 e7a71b8318fa26b8a85eac86e4c0a129f453d44f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
namespace Shared.Common.ResponseEntity
{
    [Serializable]
    public class GetAreaCode
    {
        public List<AreaCodeOBJ> ResponseData = new List<AreaCodeOBJ>();
        public string ErrorInfo_En;
        public string ErrorInfo_Zh;
        public string ResponseVersion;
        public string StateCode;
        public string ErrorInfo;
    }
    [Serializable]
    public class AreaCodeOBJ
    {
        public string Name{ get; set; }
        public string Code{ get; set; }
        public string Id{ get; set; }
        public string CreatedOnUtc { get; set; }
    }
}