using System; using Microsoft.Extensions.Options; namespace CoreCms.Net.WeChat.Service.Options { 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; } }