12345678910111213141516171819202122232425262728293031 |
- using System.Collections.Generic;
- namespace JiaZhiQuan.Common.Models.DTO
- {
- /// <summary>
- /// 地区DTO
- /// </summary>
- public class CountryRegionsDTO
- {
- public int id { get; set; }
- public string name { get; set; }
- public List<ProvinceRegions> provinces { get; set; }
- }
- /// <summary>
- /// 省份
- /// </summary>
- public class ProvinceRegions
- {
- public int id { get; set; }
- public string name { get; set; }
- public List<CityRegions> citys { get; set; }
- }
- /// <summary>
- /// 城市
- /// </summary>
- public class CityRegions
- {
- public int id { get; set; }
- public string name { get; set; }
- }
- }
|