mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-14 03:56:22 +08:00
feat(work): 新增停止发表企业朋友圈接口
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/externalcontact/cancel_moment_task 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class CgibinExternalContactCancelMomentTaskRequest : WechatWorkRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置朋友圈 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("moment_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("moment_id")]
|
||||
public string MomentId { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/externalcontact/cancel_moment_task 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CgibinExternalContactCancelMomentTaskResponse : WechatWorkResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user