黄学彪
2019-11-25 5727cf0b9b54da0a191dd1e23cb5abf21320fbff
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; }
    }
}