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