using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Helper.WeChat.Models
{
public class UnlimitedQrCodeModel
{
///
/// 传参
///
public string scene { get; set; }
///
/// 小程序页面
///
public string page { get; set; }
///
/// 是否检查页面存在
///
public bool check_path { get; set; }
///
/// 打开版本
///
public string env_version { get; set; }
///
/// 宽度
///
public int width { get; set; }
///
/// 自动配置线条颜色
///
public bool auto_color { get; set; }
///
/// 是否需要透明底色
///
public bool is_hyaline { get; set; }
}
}