using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { public class RecommendInfoEntity { /// /// /// public string UserName { get; set; } /// /// /// public string NickName { get; set; } /// /// /// public int QQNum { get; set; } /// /// /// public string Province { get; set; } /// /// /// public string City { get; set; } /// /// /// public string Content { get; set; } /// /// /// public string Signature { get; set; } /// /// /// public string Alias { get; set; } /// /// /// public int Scene { get; set; } /// /// /// public int VerifyFlag { get; set; } /// /// /// public int AttrStatus { get; set; } /// /// /// public int Sex { get; set; } /// /// /// public string Ticket { get; set; } /// /// /// public int OpCode { get; set; } } }