You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
987 B
40 lines
987 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Common.Helper.WeChat.Models
|
|
{
|
|
public class UnlimitedQrCodeModel
|
|
{
|
|
/// <summary>
|
|
/// 传参
|
|
/// </summary>
|
|
public string scene { get; set; }
|
|
/// <summary>
|
|
/// 小程序页面
|
|
/// </summary>
|
|
public string page { get; set; }
|
|
/// <summary>
|
|
/// 是否检查页面存在
|
|
/// </summary>
|
|
public bool check_path { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打开版本
|
|
/// </summary>
|
|
public string env_version { get; set; }
|
|
|
|
/// <summary>
|
|
/// 宽度
|
|
/// </summary>
|
|
public int width { get; set; }
|
|
/// <summary>
|
|
/// 自动配置线条颜色
|
|
/// </summary>
|
|
public bool auto_color { get; set; }
|
|
/// <summary>
|
|
/// 是否需要透明底色
|
|
/// </summary>
|
|
public bool is_hyaline { get; set; }
|
|
}
|
|
}
|
|
|