mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 05:19:49 +08:00
添加项目文件。
This commit is contained in:
48
CoreCms.Net.WeChat.Service/Options/WechatOptions.cs
Normal file
48
CoreCms.Net.WeChat.Service/Options/WechatOptions.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace CoreCms.Net.WeChat.Service.Options
|
||||
{
|
||||
public partial class WeChatOptions : IOptions<WeChatOptions>
|
||||
{
|
||||
WeChatOptions IOptions<WeChatOptions>.Value => this;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 微信公众号AppId
|
||||
/// </summary>
|
||||
public string WeiXinAppId { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WeiXinAppSecret { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WeiXinEncodingAESKey { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WeiXinToken { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 微信小程序
|
||||
/// </summary>
|
||||
public string WxOpenAppId { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WxOpenAppSecret { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WxOpenToken { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string WxOpenEncodingAESKey { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user