namespace SKIT.FlurlHttpClient.Wechat.TenpayV2
{
///
/// 微信支付 API 接口域名。
///
public static class WechatTenpayEndpoints
{
///
/// 主域名(默认)。
///
public const string DEFAULT = "https://api.mch.weixin.qq.com";
///
/// 容灾备用域名。
///
public const string BACKUP = "https://api2.mch.weixin.qq.com";
///
/// 沙箱域名。
///
public const string SANDBOX = "https://api.mch.weixin.qq.com/sandboxnew";
}
}