Files
DotNetCore.SKIT.FlurlHttpCl…/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinOpen/CgibinOpenCreateResponse.cs

19 lines
571 B
C#
Raw Normal View History

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!;
}
}