namespace LifePayment.Domain.Shared
{
public class WxMatchMakingMiniAppOption
{
///
/// 小程序版本。正式版为 "release",体验版为 "trial",开发版为 "develop"
///
public string EnvVersion { get; set; } = "release";
///
/// 扫码注册/登录入口页
///
public string SignUpPage { get; set; }
///
/// 小程序AppId
///
public string AppId { get; set; }
///
/// 小程序Secret
///
public string Secret { get; set; }
///
/// Url
///
public string Url { get; set; }
///
/// 默认是true,检查page 是否存在,为 true 时 page 必须是已经发布的小程序存在的页面(否则报错);
/// 为 false 时允许小程序未发布或者 page 不存在, 但page 有数量上限(60000个)请勿滥用。
///
public bool CheckPath { get; set; } = true;
}
}