NewGaoKaoApi/New_College.Model/ViewModels/AliyunSmsSenderConfig.cs

45 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}