mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-16 21:36:24 +08:00
16 lines
581 B
C#
16 lines
581 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /cgi-bin/menu/delete 接口的请求。</para>
|
|
/// </summary>
|
|
public class CgibinMenuDeleteRequest : WechatWorkRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置应用 ID。如果不指定将使用构造 <see cref="WechatWorkClient"/> 时的 <see cref="WechatWorkClientOptions.AgentId"/> 参数。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int? AgentId { get; set; }
|
|
}
|
|
}
|