mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
18 lines
535 B
C#
18 lines
535 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /getbindlink/{TOKEN} 接口的请求。</para>
|
|
/// </summary>
|
|
[XmlRoot("xml")]
|
|
public class GetBindLinkRequest : WechatOpenAIRequest, WechatOpenAIRequest.Serialization.IEncryptedXmlable
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置直播 ID。
|
|
/// </summary>
|
|
[XmlElement("redirectlink")]
|
|
public string RedirectLink { get; set; } = string.Empty;
|
|
}
|
|
}
|