using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { public class ProfileEntity { /// /// /// public int BitFlag { get; set; } /// /// /// public UserNameEntity UserName { get; set; } /// /// /// public NickNameEntity NickName { get; set; } /// /// /// public int BindUin { get; set; } /// /// /// public BindEmailEntity BindEmail { get; set; } /// /// /// public BindMobileEntity BindMobile { get; set; } /// /// /// public int Status { get; set; } /// /// /// public int Sex { get; set; } /// /// /// public int PersonalCard { get; set; } /// /// /// public string Alias { get; set; } /// /// /// public int HeadImgUpdateFlag { get; set; } /// /// /// public string HeadImgUrl { get; set; } /// /// /// public string Signature { get; set; } } }