using Microsoft.Extensions.Options;
namespace Ds.Module.WeChat.DsOptions
{
///
///
///
public partial class WeChatOptions : IOptions
{
WeChatOptions IOptions.Value => this;
///
/// 微信公众号AppId
///
public string WeiXinAppId { get; set; } = string.Empty;
///
///
///
public string WeiXinAppSecret { get; set; } = string.Empty;
///
///
///
public string WeiXinEncodingAESKey { get; set; } = string.Empty;
///
///
///
public string WeiXinToken { get; set; } = string.Empty;
///
/// 微信小程序
///
public string WxOpenAppId { get; set; } = string.Empty;
///
///
///
public string WxOpenAppSecret { get; set; } = string.Empty;
///
///
///
public string WxOpenToken { get; set; } = string.Empty;
///
///
///
public string WxOpenEncodingAESKey { get; set; } = string.Empty;
}
}