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; } } /// /// 微信小程序配置 /// public class WeixinConfig { /// /// 绑定支付的APPID(必须配置) /// public static string Appid { get; set; } /// /// 公众账号secert /// public static string Secret { get; set; } /// /// 商户号(必填) /// public static string MCHID { get; set; } /// /// 商户支付密钥 /// public static string KEY { get; set; } /// /// 支付结果回调URL /// public static string NotifyUrl { get; set; } } }