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