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.

26 lines
844 B

1 month ago
using System.Runtime.Serialization;
namespace HttpProxyWorld
{
public class HttpProxyWorldServerConfig
{
//firebase推送key
public string googlecm_serverkey;
//iap验证包名,用来校验用
public string iap_bundle_id;
//iap共享key,如果iap后台有这个key,则需要配置,如果没有可以不配置
public string iap_share_key;
//iap是否校验沙盒模式,如果关闭,则沙盒下的支付校验将失败,正式环境一般是0,需要苹果审核的时候改成1
public int iapCheckSandbox;
//米大师的http地址https://sandbox.api.unipay.qq.com
public string midasHttpAddress;
public string appid; //米大师注册的应用ID,(对应客户端接口中的offerid)
public string appkey;
}
}