namespace StopShopping.Services.Models.Resp;
///
/// 收货地址
///
public class Address
{
public int Id { get; set; }
///
/// 姓名
///
///
public string Name { get; set; } = string.Empty;
///
/// 联系电话
///
///
public string Telephone { get; set; } = string.Empty;
///
/// 自定义标签
///
///
public string? Tag { get; set; }
///
/// 是否默认地址
///
///
public bool Default { get; set; }
///
/// 区域id,表示省/直辖市
///
///
public int DistrictLevel1Id { get; set; }
///
/// 区域id,表示市/直辖市时为空
///
///
public int? DistrictLevel2Id { get; set; }
///
/// 区域id,表示区
///
///
public int DistrictLevel3Id { get; set; }
///
/// 区域id,表示街道/镇
///
///
public int DistrictLevel4Id { get; set; }
///
/// 详细地址
///
///
public string? Detail { get; set; }
}