NewGaoKaoApi/New_College.Common/GlobalVar/WeiXinConfig.cs

46 lines
963 B
C#

namespace New_College
{
public static class WeixinConfig
{
/// <summary>
/// 微信appid
/// </summary>
public static string Appid { get; set; }
/// <summary>
/// 微信安全码
/// </summary>
public static string Secret { get; set; }
/// <summary>
/// 商户ID
/// </summary>
public static string MCHID { get; set; }
/// <summary>
/// 商户key
/// </summary>
public static string KEY { get; set; }
public static string APIv3Key { get; set; }
/// <summary>
///
/// </summary>
public static string PrivateKey { get; set; }
/// <summary>
///
/// </summary>
public static string SerialNumber { get; set; }
/// <summary>
/// 支付回调URL
/// </summary>
public static string NotifyUrl { get; set; }
}
}