mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 01:44:42 +08:00
30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/meeting/get_info 接口的请求。</para>
|
|
/// </summary>
|
|
public class CgibinMeetingGetInfoRequest : WechatWorkRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置会议 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("meetingid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("meetingid")]
|
|
public string? MeetingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置会议号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("meeting_code")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("meeting_code")]
|
|
public string? MeetingCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置子会议 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_meetingid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_meetingid")]
|
|
public string? SubMeetingId { get; set; }
|
|
}
|
|
}
|