gxc
2020-02-28 66a9965c44ecc32a6696abca876ab9d1cd091584
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; }
    }
}