mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 04:53:46 +08:00
16 lines
522 B
C#
16 lines
522 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/open/create 接口的响应。</para>
|
|
/// </summary>
|
|
public class CgibinOpenCreateResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置开放平台的 AppId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("open_appid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("open_appid")]
|
|
public string OpenAppId { get; set; } = default!;
|
|
}
|
|
}
|