mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
32 lines
840 B
C#
32 lines
840 B
C#
using System;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Sample.Options
|
|
{
|
|
public partial class WechatOptions : IOptions<WechatOptions>
|
|
{
|
|
WechatOptions IOptions<WechatOptions>.Value => this;
|
|
|
|
public Types.WechatAccount[] Accounts { get; set; } = Array.Empty<Types.WechatAccount>();
|
|
|
|
public string CallbackState { get; set; } = string.Empty;
|
|
|
|
public string CallbackToken { get; set; } = string.Empty;
|
|
}
|
|
|
|
partial class WechatOptions
|
|
{
|
|
public static class Types
|
|
{
|
|
public class WechatAccount
|
|
{
|
|
public string? GhId { get; set; }
|
|
|
|
public string AppId { get; set; } = string.Empty;
|
|
|
|
public string AppSecret { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
}
|
|
}
|