namespace Quiz.Models
{
public class Weixin
{
///
/// CNZZ统计Id
///
public string SiteId { get; set; }
///
/// 微信公众号名称
///
public string Account { get; set; }
///
/// 分享链接
///
public string ShareUrl { get; set; }
///
/// 微信公众号actId
///
public string ActId { get; set; }
///
/// 微信公众号AppId
///
public string AppId { get; set; }
///
/// 微信公众号AppSecret
///
public string AppSecret { get; set; }
///
/// 是否关注公众号
///
public int IsSubscribe { get; set; }
}
}