mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
24 lines
650 B
C#
24 lines
650 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2
|
|
{
|
|
/// <summary>
|
|
/// 微信支付 API 接口域名。
|
|
/// </summary>
|
|
public static class WechatTenpayEndpoints
|
|
{
|
|
/// <summary>
|
|
/// 主域名(默认)。
|
|
/// </summary>
|
|
public const string DEFAULT = "https://api.mch.weixin.qq.com";
|
|
|
|
/// <summary>
|
|
/// 容灾备用域名。
|
|
/// </summary>
|
|
public const string BACKUP = "https://api2.mch.weixin.qq.com";
|
|
|
|
/// <summary>
|
|
/// 沙箱域名。
|
|
/// </summary>
|
|
public const string SANDBOX = "https://api.mch.weixin.qq.com/sandboxnew";
|
|
}
|
|
}
|