mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 13:03:43 +08:00
16 lines
499 B
C#
16 lines
499 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /tcb/getvoipsign 接口的响应。</para>
|
|
/// </summary>
|
|
public class TCBGetVoIPSignResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置签名。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("signature")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("signature")]
|
|
public string Signature { get; set; } = default!;
|
|
}
|
|
}
|