mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-21 02:58:06 +08:00
16 lines
573 B
C#
16 lines
573 B
C#
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /publish_progress/{TOKEN} 接口的请求。</para>
|
|
/// </summary>
|
|
public class PublishProgressRequest : WechatOpenAIRequest, WechatOpenAIRequest.Serialization.IEncryptedXmlable
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置管理员 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("managerid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("managerid")]
|
|
public string ManagerId { get; set; } = string.Empty;
|
|
}
|
|
}
|