mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-15 04:48:16 +08:00
feat(work): 随官方更新会议室、日程相关接口模型
This commit is contained in:
@@ -20,10 +20,10 @@
|
||||
public int MeetingRoomId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置排期列表。
|
||||
/// 获取或设置排期信息。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("schedule")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("schedule")]
|
||||
public Types.Schedule[] ScheduleList { get; set; } = default!;
|
||||
public Types.Schedule Schedule { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,13 @@
|
||||
[Newtonsoft.Json.JsonProperty("booker")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("booker")]
|
||||
public string? BookerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置预定状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public int Status { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -84,6 +84,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
[Newtonsoft.Json.JsonProperty("attendees")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("attendees")]
|
||||
public IList<Types.Attendee>? AttendeeList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置是否忽略参与者字段。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("skip_attendees")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("skip_attendees")]
|
||||
public bool? RequireSkipAttendees { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user