mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 10:41:58 +08:00
20 lines
604 B
C#
20 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /openapi/publish_progress/{TOKEN} 接口的请求。</para>
|
|
/// </summary>
|
|
[XmlRoot("xml")]
|
|
public class OpenApiPublishProgressRequest : WechatOpenAIRequest, WechatOpenAIRequest.Serialization.IEncryptedXmlable
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置管理员 ID。
|
|
/// </summary>
|
|
[XmlElement("managerid")]
|
|
public string ManagerId { get; set; } = string.Empty;
|
|
}
|
|
}
|