mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-22 20:13:41 +08:00
23 lines
807 B
C#
23 lines
807 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/meeting/create 接口的响应。</para>
|
|
/// </summary>
|
|
public class CgibinMeetingCreateResponse : WechatWorkResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置会议 ID。
|
|
/// </summary>
|
|
[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; }
|
|
}
|
|
}
|