You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
633 B
22 lines
633 B
2 years ago
|
namespace Zncy.CloudCar.WeChat.Service.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户绑定手机号解密类
|
||
|
/// </summary>
|
||
|
public class DecodedPhoneNumber : DecodeEntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 用户绑定的手机号(国外手机号会有区号)
|
||
|
/// </summary>
|
||
|
public string phoneNumber { get; set; }
|
||
|
/// <summary>
|
||
|
/// 没有区号的手机号
|
||
|
/// </summary>
|
||
|
public string purePhoneNumber { get; set; }
|
||
|
/// <summary>
|
||
|
/// 区号(Senparc注:国别号)
|
||
|
/// </summary>
|
||
|
public string countryCode { get; set; }
|
||
|
}
|
||
|
}
|