45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace New_College.Model.ViewModels
|
||
{
|
||
public class AliyunSmsSenderConfig
|
||
{
|
||
public static string accessKeyId { get; set; }
|
||
public static string accessKeySecret { get; set; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 微信小程序配置
|
||
/// </summary>
|
||
public class WeixinConfig
|
||
{
|
||
/// <summary>
|
||
/// 绑定支付的APPID(必须配置)
|
||
/// </summary>
|
||
public static string Appid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 公众账号secert
|
||
/// </summary>
|
||
public static string Secret { get; set; }
|
||
/// <summary>
|
||
/// 商户号(必填)
|
||
/// </summary>
|
||
public static string MCHID { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户支付密钥
|
||
/// </summary>
|
||
public static string KEY { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支付结果回调URL
|
||
/// </summary>
|
||
public static string NotifyUrl { get; set; }
|
||
}
|
||
|
||
|
||
}
|