mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 13:03:43 +08:00
19 lines
571 B
C#
19 lines
571 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
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!;
|
|||
|
}
|
|||
|
}
|