wxr
2020-03-05 0bdc0a135dbe31761b53f432ed34f347f0a4e36b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
 
 
namespace HDL_ON
{
    [Serializable]
    public class RegionInfoRes
    {
        public string RegionID { get; set; }
 
        /// <summary>
        /// 区域名称(如:广州、深圳等)
        /// </summary>
        public string RegionName { get; set; }
        /// <summary>
        /// 住宅名称
        /// </summary>
        public string Name { get;set; }
    }
}