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