mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-12 19:21:21 +08:00
27 lines
691 B
C#
27 lines
691 B
C#
using System;
|
|
|
|
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>
|
|
[Obsolete("")]
|
|
public const string SANDBOX = "https://api.mch.weixin.qq.com/xdc/apiv2sandbox";
|
|
}
|
|
}
|