feat(work): 随官方更新会议相关接口模型

This commit is contained in:
fudiwei
2023-01-12 10:03:26 +08:00
parent 8b461a5b92
commit 233a780b94
7 changed files with 122 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
{
/// <summary>
/// <para>表示 [POST] /cgi-bin/meeting/create 接口的响应。</para>
@@ -11,5 +11,12 @@
[Newtonsoft.Json.JsonProperty("meetingid")]
[System.Text.Json.Serialization.JsonPropertyName("meetingid")]
public string MeetingId { get; set; } = default!;
/// <summary>
/// 获取或设置无效会议帐号 UserId 列表。
/// </summary>
[Newtonsoft.Json.JsonProperty("excess_users")]
[System.Text.Json.Serialization.JsonPropertyName("excess_users")]
public string[]? ExcessUserIdList { get; set; }
}
}