This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace Ds.Module.WeChat.Models
{
public class DecodedPhoneNumber : DecodeEntityBase
/// <summary>
/// 用户绑定的手机号(国外手机号会有区号)
/// </summary>
public string phoneNumber { get; set; }
/// 没有区号的手机号
public string purePhoneNumber { get; set; }
/// 区号(Senparc注:国别号)
public string countryCode { get; set; }
}