You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
546 B
C#

12 months ago
namespace Ds.Module.WeChat.Models
{
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; }
}
}