using Api.Framework.Tools; using Chat.Framework.WXSdk; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Model { /// /// 联系人 /// public class fl_wechat_contacts : base_model { public int msg_type { get; set; } /// /// 账号 /// public string user_name { get; set; } /// /// 昵称 /// public string nick_name { get; set; } /// /// 签名 /// public string signature { get; set; } /// /// 小头像 /// public string smallheadimgurl { get; set; } /// /// 大头像 /// public string bigheadimgurl { get; set; } /// /// 省份 /// public string province { get; set; } /// /// 城市 /// public string city { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// 微信号 /// public string alias { get; set; } /// /// 性别 /// public int sex { get; set; } public int contacttype { get; set; } public string chatroomowner { get; set; } public string extinfo { get; set; } /// /// 是否为相互好友,值为空时为好友 /// public string ticket { get; set; } /// /// 版本 /// public string chatroomversion { get; set; } } }