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.
 
 
 
 
 
 

52 lines
1.3 KiB

using System.Collections.Generic;
using Sog;
namespace HttpProxyPay
{
public class HeroWebPayCallbackUrl
{
public string pcode;
public string url;
}
public class HttpProxyPayServerConfig
{
// 英雄usdk
public string heroUsdk_payCheckUrl;
public List<HeroUsdkProjCfgOne> heroUsdkProjCfg = new List<HeroUsdkProjCfgOne>();
// 网页支付
public string heroWebPayKey;
// 英雄网页支付成功时回调url, 默认跟客户端内一致
public List<HeroWebPayCallbackUrl> heroWebPaySuccCallbackUrls;
// google
public string googlePayPublicKey;
// 华为
public string huaweiClientId;
public string huaweiClientSecret;
public string huaweiPayPublicKey;
public string huaweiPayCheckUrl;
public string huaweiGetTokenUrl;
public int selfPayId;
public List<PayUrlConfig> payUrls;
public string adkey;
public string offerId;
//小程序密钥
public string appkey;
public string wxAppId;
public string wxSec;
public string wxPayToken;
public string wxPayAesKey;
public string mchid;
public string wxPayPemNo;
public string wxPayPem;
public string wxPayPubPem;
public string wxV3Key;
}
}