using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { public class BaseContactEntity { /// /// /// public BaseResponseEntity BaseResponse { get; set; } /// /// /// public int Count { get; set; } /// /// /// public List ContactList { get; set; } /// /// /// public SyncKeyEntity SyncKey { get; set; } /// /// /// public UserEntity User { get; set; } /// /// /// public string ChatSet { get; set; } /// /// /// public string SKey { get; set; } /// /// /// public int ClientVersion { get; set; } /// /// /// public int SystemTime { get; set; } /// /// /// public int GrayScale { get; set; } /// /// /// public int InviteStartCount { get; set; } /// /// /// public int MPSubscribeMsgCount { get; set; } /// /// /// public List MPSubscribeMsgList { get; set; } /// /// /// public int ClickReportInterval { get; set; } } }